From ba9da781769375417fbc7e90eb2c01a174126017 Mon Sep 17 00:00:00 2001 From: ZhangJinLong <19357383190@163.com> Date: Fri, 26 Sep 2025 14:16:44 +0800 Subject: [PATCH] sin and ecg --- build/.bin_timestamp | 2 +- build/.ninja_deps | Bin 1514284 -> 1533916 bytes build/.ninja_log | 1072 +- build/CMakeCache.txt | 2 +- build/CMakeFiles/TargetDirectories.txt | 7 + build/CMakeFiles/git-data/HEAD | 2 +- build/CMakeFiles/git-data/grabRef.cmake | 2 +- build/CMakeFiles/git-data/head-ref | 2 +- build/CMakeFiles/rules.ninja | 19 + build/SIM_S3_1.bin | Bin 292064 -> 297568 bytes build/SIM_S3_1.elf | Bin 4677916 -> 4715188 bytes build/SIM_S3_1.map | 11116 ++++++++-------- build/bootloader/.ninja_log | 26 + build/build.ninja | 213 +- build/compile_commands.json | 40 +- build/esp-idf/cmake_install.cmake | 5 + .../esp_app_desc.c.obj | Bin 18180 -> 18180 bytes .../esp_app_format/libesp_app_format.a | Bin 18488 -> 18488 bytes .../main/CMakeFiles/__idf_main.dir/main.c.obj | Bin 36036 -> 46124 bytes build/esp-idf/main/libmain.a | Bin 733788 -> 721492 bytes .../src/ecg_generator.c.obj | Bin 0 -> 23400 bytes .../src/sine_generator.c.obj | Bin 0 -> 28924 bytes .../signal_generators/cmake_install.cmake | 39 + .../signal_generators/libsignal_generators.a | Bin 0 -> 53136 bytes build/ldgen_libraries | 4 + build/ldgen_libraries.in | 4 + build/log/idf_py_stderr_output_16512 | 1 + build/log/idf_py_stderr_output_17072 | 1 + build/log/idf_py_stderr_output_18140 | 1 + build/log/idf_py_stderr_output_20720 | 1 + build/log/idf_py_stderr_output_20960 | 1 + build/log/idf_py_stderr_output_22568 | 1 + build/log/idf_py_stderr_output_4496 | 1 + build/log/idf_py_stderr_output_4912 | 27 + build/log/idf_py_stderr_output_6804 | 1 + build/log/idf_py_stderr_output_7556 | 1 + build/log/idf_py_stderr_output_7624 | 1 + build/log/idf_py_stderr_output_8732 | 1 + build/log/idf_py_stderr_output_9152 | 2 +- build/log/idf_py_stdout_output_16512 | 51 + build/log/idf_py_stdout_output_17072 | 51 + build/log/idf_py_stdout_output_18140 | 61 + build/log/idf_py_stdout_output_20720 | 18 + build/log/idf_py_stdout_output_20960 | 55 + build/log/idf_py_stdout_output_22568 | 81 + build/log/idf_py_stdout_output_4496 | 18 + build/log/idf_py_stdout_output_4912 | 3119 +++++ build/log/idf_py_stdout_output_6804 | 8 + build/log/idf_py_stdout_output_7556 | 71 + build/log/idf_py_stdout_output_7624 | 18 + build/log/idf_py_stdout_output_8732 | 64 + build/log/idf_py_stdout_output_9152 | 65 +- build/project_description.json | 39 +- components/signal_generators/CMakeLists.txt | 7 + components/signal_generators/README.md | 60 + .../include}/ecg_generator.h | 1 + .../include/sine_generator.h | 46 + .../signal_generators/src}/ecg_generator.c | 8 +- .../signal_generators/src/sine_generator.c | 199 + main/CMakeLists.txt | 12 +- main/main.c | 171 +- signal_generators/CMakeLists.txt | 10 + signal_generators/README.md | 60 + signal_generators/idf_component.yml | 4 + signal_generators/include/ecg_generator.h | 57 + signal_generators/include/sine_generator.h | 46 + signal_generators/src/ecg_generator.c | 274 + signal_generators/src/sine_generator.c | 199 + 68 files changed, 11136 insertions(+), 6332 deletions(-) create mode 100644 build/esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/ecg_generator.c.obj create mode 100644 build/esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/sine_generator.c.obj create mode 100644 build/esp-idf/signal_generators/cmake_install.cmake create mode 100644 build/esp-idf/signal_generators/libsignal_generators.a create mode 100644 build/log/idf_py_stderr_output_16512 create mode 100644 build/log/idf_py_stderr_output_17072 create mode 100644 build/log/idf_py_stderr_output_18140 create mode 100644 build/log/idf_py_stderr_output_20720 create mode 100644 build/log/idf_py_stderr_output_20960 create mode 100644 build/log/idf_py_stderr_output_22568 create mode 100644 build/log/idf_py_stderr_output_4496 create mode 100644 build/log/idf_py_stderr_output_4912 create mode 100644 build/log/idf_py_stderr_output_6804 create mode 100644 build/log/idf_py_stderr_output_7556 create mode 100644 build/log/idf_py_stderr_output_7624 create mode 100644 build/log/idf_py_stderr_output_8732 create mode 100644 build/log/idf_py_stdout_output_16512 create mode 100644 build/log/idf_py_stdout_output_17072 create mode 100644 build/log/idf_py_stdout_output_18140 create mode 100644 build/log/idf_py_stdout_output_20720 create mode 100644 build/log/idf_py_stdout_output_20960 create mode 100644 build/log/idf_py_stdout_output_22568 create mode 100644 build/log/idf_py_stdout_output_4496 create mode 100644 build/log/idf_py_stdout_output_4912 create mode 100644 build/log/idf_py_stdout_output_6804 create mode 100644 build/log/idf_py_stdout_output_7556 create mode 100644 build/log/idf_py_stdout_output_7624 create mode 100644 build/log/idf_py_stdout_output_8732 create mode 100644 components/signal_generators/CMakeLists.txt create mode 100644 components/signal_generators/README.md rename {main => components/signal_generators/include}/ecg_generator.h (94%) create mode 100644 components/signal_generators/include/sine_generator.h rename {main => components/signal_generators/src}/ecg_generator.c (95%) create mode 100644 components/signal_generators/src/sine_generator.c create mode 100644 signal_generators/CMakeLists.txt create mode 100644 signal_generators/README.md create mode 100644 signal_generators/idf_component.yml create mode 100644 signal_generators/include/ecg_generator.h create mode 100644 signal_generators/include/sine_generator.h create mode 100644 signal_generators/src/ecg_generator.c create mode 100644 signal_generators/src/sine_generator.c diff --git a/build/.bin_timestamp b/build/.bin_timestamp index e87c5ef..f3890cb 100644 --- a/build/.bin_timestamp +++ b/build/.bin_timestamp @@ -1 +1 @@ -8cfd9bd06a8d256eff6735ec8a0a3067 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin +539a7c49b582902925f4a1ed7feaaf69 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin diff --git a/build/.ninja_deps b/build/.ninja_deps index de2fb760f52b9abc8304db73c6e7f84b2d228c33..83d25afd8d4e1b93509a0800282389824f5e0855 100644 GIT binary patch delta 1134 zcmZ3pE#}Vo*oGFy7N!>F7M2#)7Pc1l7LFFq7OocV7M>Q~7QPn#7J(MQ7NHj57LgXw z7O^ejI?_TBj0_F)xEL5#2OPVgv|E~CKG*bf85~*DA8g=wAQQvDz>r#8pqrVJreBCMH$glE1w!-v_|HV$rBoOkc5l){LXXd4%dlhKfJz{-}uAhP7E{VQHGXdz` zJ5b*$0)4p4Y&O`pNBs={%1BiGeH< zoWa7-zz4K^*2j8&kVX8{C*BpQ-X8E+M1X~F15lC+DCzN}5-7R7@2ECv)bbK4*bvPT@q zhMBZN;<`IllVA$=Rb9=;tDvTN-ZQ)k!qitts9F7M2#)7Pc1l7LFFq7OocV7M>Q~7QPn#7J(MQ7NHj57LgXw K7O^ejI?@0r#SyLm diff --git a/build/.ninja_log b/build/.ninja_log index 6f27cfb..336ed56 100644 --- a/build/.ninja_log +++ b/build/.ninja_log @@ -1,13 +1,13 @@ # ninja log v6 +308 6309 7804697878036847 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin b9a711e4173d715 +406258 416232 7804704783897250 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/external/sbc/decoder/srce/decoder-oina.c.obj c8624714a84a777b +2242 10069 7804700743758993 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 4100d35e03b28b5f +220343 229265 7804700076541560 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 5593984749dea506 14011 22444 7804698013224967 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj 77f5591cdd71a3be 105370 113225 7804701775042910 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 9a25b8c560bf89af -168901 178931 7804699562119229 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj 891d8a1f23a95a11 714527 722642 7804707866606040 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj f7cdcd892543435 +168901 178931 7804699562119229 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj 891d8a1f23a95a11 341 443 7804697877377758 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/project_elf_src_esp32s3.c 2fab4e66a5b176ae -406258 416232 7804704783897250 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/external/sbc/decoder/srce/decoder-oina.c.obj c8624714a84a777b -308 6309 7804697878036847 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin b9a711e4173d715 -220343 229265 7804700076541560 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 5593984749dea506 -2242 10069 7804700743758993 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 4100d35e03b28b5f 578357 585528 7804706504914259 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/gif/lv_gif.c.obj a0c5ebcd8b01840f 15100 22499 7804700872316484 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj d4c6317c04d2bc50 341 443 7804697877377758 project_elf_src_esp32s3.c 2fab4e66a5b176ae @@ -58,10 +58,10 @@ 23986 33474 7804698112970001 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj aa4ef23f80ab520 215396 225019 7804700027060427 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj aca34606594ce73b 837 9326 7804697881475761 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj 2f3d4dc01f1172ac -363325 377105 7804704354600646 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/btc/core/btc_main.c.obj df04b5a6b5f1d6d5 449509 460647 7804705216438819 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/stack/btm/btm_ble_batchscan.c.obj faea0e35e79b3c89 -657 9442 7804697879676016 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 5abb2c42f586b57a +363325 377105 7804704354600646 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/btc/core/btc_main.c.obj df04b5a6b5f1d6d5 67301 74938 7804698546126297 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32s3/esp_coex_adapter.c.obj 29ba311e22cd9d68 +657 9442 7804697879676016 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 5abb2c42f586b57a 16904 26511 7804698042125147 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj cf9835056d9b60d7 556840 561670 7804706289743114 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/pxp/lv_gpu_nxp_pxp.c.obj 9ae9f0f843b1a6c6 17384 25701 7804700895174525 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj 8a266ec4a6f6e433 @@ -158,13 +158,13 @@ 114119 126144 7804699014299101 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 4110827b130f0196 113225 121156 7804701853670086 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj aa975263b80154f5 17638 24850 7804698049480823 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj a4156ba75e901e21 -674 3004 7804962960233392 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c +445 1974 7805000276647207 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c 109752 118840 7804701818855451 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj a0fac1be5bfcbd67 24548 34393 7804698118553688 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj b40df9cc7555a04f 103016 121311 7804698903269611 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj cc763f22b8058dab 540848 545293 7804706129832877 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj 8bb5b704b0e6826d 282226 295554 7804703543584166 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/api/esp_gap_bt_api.c.obj cf8d427d64d93ff9 -686 1473 7804962960345830 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec +577 1340 7805583599668556 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec 141451 149271 7804702135836399 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj 86d92d5cf919c043 20222 25537 7804698075330381 esp-idf/tcp_transport/libtcp_transport.a 58b9e27c1583b1b4 18026 26957 7804698053331887 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj 8b3962b66c73123e @@ -250,7 +250,7 @@ 211788 220279 7804702839219231 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 13f3e58226f6d05d 38252 46947 7804698255645218 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj 13d0f1f809c9e352 512115 516929 7804705842484151 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/tinycrypt/src/ecc.c.obj 336286d2abe1d66a -43277 43422 7804963386262318 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +30553 30676 7805583899427158 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 2498 10573 7804700746320609 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj 407948e989dab3fd 40895 47850 7804698282037371 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj 6ac6f4f859de7ce7 95125 101162 7804698824331969 esp-idf/esp_driver_i2s/libesp_driver_i2s.a fee3a8990898b24b @@ -263,7 +263,7 @@ 41287 48402 7804698285945971 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj 27c5a039fa71fb5e 269444 278608 7804703415783569 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_queue.c.obj 33a18239ae4999f5 762543 763635 7804708346756277 esp-idf/cmock/libcmock.a fd027b25c27bf3e4 -686 1473 7804962960345830 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec +577 1340 7805583599668556 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec 44050 48781 7804698313607440 esp-idf/driver/libdriver.a 8b25de41fa355639 16630 24827 7804700887603855 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj f918464db4f7ec06 256256 263608 7804703283900605 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj c6a0f313bdb9b4f2 @@ -382,7 +382,7 @@ 189796 199263 7804699771077083 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj 48efefb559a134dd 63306 71326 7804698506161567 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj 7272939c831609bc 64097 71872 7804698514080265 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj 52687c8990e4b81b -9141 9637 7804963044893017 esp-idf/main/libmain.a 918cc5d87c8b80ca +4526 4844 7805583639159991 esp-idf/main/libmain.a 1441f973ef462995 67452 72551 7804698547614262 esp-idf/esp_driver_tsens/libesp_driver_tsens.a 7b89a32f5e7b3898 83717 93420 7804698710269002 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 4f65506a24be9514 63920 72950 7804698512309129 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj d2a05c0a8b1eef33 @@ -444,7 +444,7 @@ 84453 93796 7804698717632062 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj 5abbd6ac12cff3eb 257982 264753 7804700452979032 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj 8cd935dde08788ff 553289 559309 7804706254222449 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw_rect.c.obj 75bba33e24f51aca -774569 783320 7804708467016614 esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_device_le_prf.c.obj 5f1de8c30ef01339 +409 1660 7805583597992016 esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_device_le_prf.c.obj 2ea6d4a64dd352a6 274437 283217 7804703465713626 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/mutex.c.obj fbfea93dd42e037b 212380 221302 7804702845111897 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 7d4c9fc0ab9fb8f9 83914 94497 7804698712224683 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj 1310b2613b3f1c91 @@ -683,7 +683,7 @@ 51697 58918 7804701238304208 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj 931230a7488c9df5 691740 698850 7804707638746740 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/examples/widgets/keyboard/lv_example_keyboard_1.c.obj 41d01af21315d07c 230507 246689 7804700178188808 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj 7e1ae7da00cbdcda -686 1473 7804962960345830 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +577 1340 7805583599668556 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec 198336 207148 7804699856470046 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 451c174c9812ffaa 172517 179752 7804702446465765 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj 4c21c293c67f24cb 201752 210286 7804699890625742 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj 72be790dbb48ff44 @@ -757,7 +757,7 @@ 75347 82113 7804701474814631 esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj fa5bc7c884b266a9 249328 256959 7804700366397679 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj c212ec8f367ad46e 141665 150023 7804702137968512 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj 23035f0ebbd5b40b -1624 1860 7804962971943958 CMakeFiles/bootloader-complete 99c64e466faf136a +1478 1699 7805583610765846 CMakeFiles/bootloader-complete 99c64e466faf136a 229579 243038 7804700168899723 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj 281ef6b47d18573 251934 252242 7804703243535518 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-update fb1025e9b0ee8fd7 423662 435530 7804704957962319 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/hci/packet_fragmenter.c.obj 94c0c674130a53b3 @@ -771,7 +771,7 @@ 231997 248548 7804700193076170 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj dec9805316b64605 229265 249328 7804700165770540 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj 39df53f748d539bd 233648 250198 7804700209598792 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj a3ba8da4b060a3c6 -686 1473 7804962960345830 bootloader/bootloader.elf d3b44b7f4bdbe5ec +577 1340 7805583599668556 bootloader/bootloader.elf d3b44b7f4bdbe5ec 83974 91019 7804701561081295 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj 464de9fc5325c651 244798 252682 7804700321085053 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj d11634d831624a88 382516 396291 7804704546505980 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/btc/profile/std/hf_ag/btc_hf_ag.c.obj 2e8acb7401164c16 @@ -832,7 +832,7 @@ 7675 12235 7804700798095584 esp-idf/esp_timer/libesp_timer.a abe1b8e8d16fd3a8 732920 740829 7804708050540126 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj 15607f9500a98aab 513 7492 7804700726477033 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj 2a2eedd350e37eec -188530 193689 7804702606639321 esp-idf/esp_app_format/libesp_app_format.a 18516095c988de80 +1700 2100 7805582577659259 esp-idf/esp_app_format/libesp_app_format.a 18516095c988de80 3464 7675 7804700755949768 esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a 7e85d8817624b812 941 9250 7804700730715795 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj a8cbf0387345d517 1951 9746 7804700740854135 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 5983ef95d935daf8 @@ -898,7 +898,7 @@ 539621 546003 7804706117552107 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_ble.c.obj e03c3026ca47f28b 50792 58012 7804701229263795 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj 80c249472b334278 51117 58258 7804701232510589 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj 4c45ec7543043e3a -774909 779892 7804708470437760 esp-idf/main/CMakeFiles/__idf_main.dir/__/__/sword.pcm.S.obj ee7adfd608cf9d27 +437 1115 7805583598262605 esp-idf/main/CMakeFiles/__idf_main.dir/__/__/sword.pcm.S.obj bc1b9b26562ddc59 51314 58763 7804701234478238 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj ee65e48399e912f1 140485 145792 7804702126187476 esp-idf/esp_system/libesp_system.a 67999a7b67eb1cc 539297 546160 7804706114306007 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/simple_ble/simple_ble.c.obj e0d0484ac1292b4c @@ -978,7 +978,7 @@ 600095 605758 7804706722255611 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_12.c.obj 7c624ba9416ec748 82113 89196 7804701542470359 esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj 4db5dacb08907dd5 82314 89782 7804701544478648 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj ac75a46276c7f35e -43277 43422 7804963386262318 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +30553 30676 7805583899427158 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 602344 608724 7804706744774676 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_24.c.obj 9cf0e4ab9b4fd66d 82550 90090 7804701546831380 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj ba9a91c3a1453df7 601652 607327 7804706737857528 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_18.c.obj e42ffa5adf64c3b2 @@ -1100,13 +1100,13 @@ 153604 163019 7804702257383382 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj aadc7b323f02a408 156162 163877 7804702282968392 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj 3217dbd00ffe4b7a 573670 580539 7804706458032210 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/layouts/grid/lv_grid.c.obj 2ce421e3a7ecd2d9 -166 23719 7804964453941426 build.ninja dff3862ec6410c11 +115 17330 7805584540700684 build.ninja dff3862ec6410c11 156621 164848 7804702287555502 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj d4edd3949d6035bd 448228 459257 7804705203623354 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/stack/hid/hidh_conn.c.obj c5c1a08d0d16a37 156890 165255 7804702290242384 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b2fd6abd9338bf27 157122 166034 7804702292543822 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 6cd6283b548b90d8 158206 167345 7804702303404749 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj a27988bfa798b0af -39488 42697 7804963348363505 SIM_S3_1.elf 28e0101e6768c40e +27399 30117 7805583867888095 SIM_S3_1.elf f7f6e69ce139eee0 174670 179315 7804702468044607 esp-idf/esp_partition/libesp_partition.a 77f083867f9b27c0 160627 169562 7804702327608286 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj 43bfd8e0172691f6 161077 169970 7804702332111276 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj f8c75cc37850035c @@ -1121,7 +1121,7 @@ 164398 171370 7804702365320982 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj dc664d3daa4b2b0e 204442 215269 7804702765767144 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 7e36c6474c427b13 641456 649276 7804707135896530 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/examples/layouts/grid/lv_example_grid_3.c.obj 2ee860fd02c4066e -163879 171905 7804702360123742 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 601a489de2b338de +254 1699 7805582563200663 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj a6ce2bd380ba5af 165255 173036 7804702373890105 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj 79446f779a5e24c1 214291 223445 7804702864254294 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj ed544602d64e4920 166034 174085 7804702381679019 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 83b37a11b0af499f @@ -1361,7 +1361,7 @@ 402119 412238 7804704742531041 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/external/sbc/decoder/srce/bitalloc-sbc.c.obj e8ba4e3f5789245 592026 598148 7804706641596097 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/widgets/keyboard/lv_keyboard.c.obj 2e8971011607437a 397721 413532 7804704698513286 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/btc/profile/std/l2cap/btc_l2cap.c.obj 4b14e52eaf832171 -497 9140 7804962958455129 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 +348 4391 7805583597376097 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj f6f2a4d62145fe5e 400125 414386 7804704722595627 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/device/interop.c.obj 4aa2942e6ba0d21d 405873 415816 7804704780055090 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/external/sbc/decoder/srce/bitstream-decode.c.obj beb28c1fa36bf030 724856 732056 7804707969903749 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj fd4f47c5538b9db0 @@ -1416,7 +1416,7 @@ 452683 465286 7804705248176070 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/stack/btm/btm_ble_gap.c.obj f4677b86d944a637 456534 468805 7804705286675130 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/stack/btm/btm_ble_5_gap.c.obj a1186fb7a5e457b8 457482 469104 7804705296156447 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/stack/btm/btm_ble_privacy.c.obj be4fe511717073df -1624 1860 7804962971943958 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +1478 1699 7805583610765846 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a 459088 469894 7804705312221666 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/stack/btm/btm_main.c.obj bea76b63fb077feb 458140 470260 7804705302743612 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/stack/btm/btm_devctl.c.obj 342289275862be19 459258 470761 7804705313915724 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/bluedroid/stack/btm/btm_pm.c.obj 53eb5105de93ede @@ -1469,7 +1469,7 @@ 636608 642865 7804707087418865 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/examples/event/lv_example_event_4.c.obj 7e0e8355cfa7733e 517337 520647 7804705894707139 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/tinycrypt/src/hmac.c.obj b0701d49ebaf7dba 517360 521202 7804705894939333 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/tinycrypt/src/cbc_mode.c.obj 9cd616bf22154fd8 -686 1473 7804962960345830 bootloader/bootloader.bin d3b44b7f4bdbe5ec +577 1340 7805583599668556 bootloader/bootloader.bin d3b44b7f4bdbe5ec 516930 521578 7804705890606756 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/tinycrypt/src/ecc_dh.c.obj 20ee2f947ef76176 517417 521994 7804705895512591 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/tinycrypt/port/esp_tinycrypt_port.c.obj 6a826bdf1264f560 724439 731585 7804707965721846 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj 8f9049201a068f29 @@ -1544,7 +1544,7 @@ 557371 562180 7804706295043844 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/pxp/lv_gpu_nxp_pxp_osa.c.obj 81e4bda28b6e0773 557973 562870 7804706301068979 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_arc.c.obj d8ca7905becd816d 558689 563270 7804706308233536 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_blend.c.obj 9ed1310b9f22a9af -1624 1860 7804962971943958 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +1478 1699 7805583610765846 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a 559486 564136 7804706316200963 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_rect.c.obj c88774bf4f0ba6c5 559310 564508 7804706314445592 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_line.c.obj 5cfa52d507bce359 559617 564894 7804706317499599 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/vglite/lv_vglite_buf.c.obj 1eeb1ee3889bc443 @@ -1552,7 +1552,7 @@ 560095 565622 7804706322288809 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/renesas/lv_gpu_d2_draw_label.c.obj 4ecd51c05310ab9a 561082 566383 7804706332157393 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sdl/lv_draw_sdl_arc.c.obj 185a49e957b9e76b 561366 566754 7804706334976674 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sdl/lv_draw_sdl_bg.c.obj d02efe7dfbee238d -42698 43277 7804963386134833 .bin_timestamp 697fc0034cccc03a +30118 30552 7805583899333704 .bin_timestamp 697fc0034cccc03a 561670 567002 7804706338003044 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sdl/lv_draw_sdl_composite.c.obj 80b5535cdb8e7cf2 757102 764171 7804708292354055 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj 314387fb2157c201 562180 567206 7804706343134414 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sdl/lv_draw_sdl_img.c.obj d55cd3637a051d08 @@ -1581,20 +1581,21 @@ 577100 584199 7804706492334061 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/fsdrv/lv_fs_stdio.c.obj a0d35135d2143b88 590983 597711 7804706631168828 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/widgets/imgbtn/lv_imgbtn.c.obj 8786471d7035a4cf 574598 581555 7804706467320186 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/freetype/lv_freetype.c.obj 62be7216d2fc9a45 +2101 3056 7805582581674006 esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/ecg_generator.c.obj 7fba3d550ae8ee6e 574752 582099 7804706468860725 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/fsdrv/lv_fs_fatfs.c.obj 5f7328b044cdec03 575382 582736 7804706475120793 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/fsdrv/lv_fs_littlefs.c.obj 554d4e9c6fb05be4 577950 584811 7804706500841586 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/gif/gifdec.c.obj 85ac90f6cc65b47d 577644 584719 7804706497781553 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/fsdrv/lv_fs_win32.c.obj 7567790f8e87f3a5 579185 586345 7804706513183061 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/png/lv_png.c.obj e53a254b0c575960 580540 587018 7804706526744769 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/qrcode/qrcodegen.c.obj b01fddd6f4c6b348 -344 4628 7804722967478245 esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj 434782de5107ac10 +253 3661 7805583596426775 esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj 702527337fa044c4 581555 587338 7804706536865148 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/sjpg/tjpgd.c.obj c6cac1a0e252f947 580898 587690 7804706530321045 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/rlottie/lv_rlottie.c.obj 5a0f9fc81550b214 581099 588089 7804706532331652 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/libs/sjpg/lv_sjpg.c.obj 670251bd2054f101 584200 589790 7804706563338374 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/others/fragment/lv_fragment_manager.c.obj 73275bfd11f732dd 585528 592026 7804706576617858 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/others/imgfont/lv_imgfont.c.obj e3fbc5ff9be48c 586646 593331 7804706587795769 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/others/msg/lv_msg.c.obj 23294a000e75be95 -9637 39488 7804963347353129 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +4844 26941 7805583862624795 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c 587227 594162 7804706593612542 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/themes/basic/lv_theme_basic.c.obj d4a03dee4dbc5f5b 587339 594725 7804706594726442 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/themes/default/lv_theme_default.c.obj a7f9c2b7becb4212 588089 595249 7804706602233665 esp-idf/lvgl__lvgl/CMakeFiles/__idf_lvgl__lvgl.dir/src/extra/widgets/animimg/lv_animimg.c.obj 45466c6160323a9 @@ -1786,807 +1787,216 @@ 764405 767729 7804708365394144 esp-idf/usb/libusb.a bef6e4986e78be91 761287 768845 7804708334176897 esp-idf/espressif__esp_lvgl_port/CMakeFiles/__idf_espressif__esp_lvgl_port.dir/esp_lvgl_port.c.obj a99d01b96b9dd90e 771346 772865 7804708446507073 sword.pcm.S 2d6a1ab2309ca19b -773864 782015 7804708459976154 esp-idf/main/CMakeFiles/__idf_main.dir/assets/font_alipuhui20.c.obj 645f15f55b379c03 -774248 782950 7804708463778658 esp-idf/main/CMakeFiles/__idf_main.dir/bt/esp_hidd_prf_api.c.obj 2c2bb15f690f034f -774496 782984 7804708466292951 esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_dev.c.obj 65a939b52f78e9af -773964 784913 7804708460941975 esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj d8f1631d095f8876 -686 1473 7804962960345830 bootloader/bootloader.map d3b44b7f4bdbe5ec -686 1473 7804962960345830 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -686 1473 7804962960345830 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -1475 1624 7804962968237496 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -1475 1624 7804962968237496 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -1624 1860 7804962971943958 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -528 5983 7804722969314728 esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj c0102b4e7e3455d4 -9637 39488 7804963347353129 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -30456 31017 7804709752999104 CMakeFiles/SIM_S3_1.elf.dir/project_elf_src_esp32s3.c.obj 4c60216bd60e0483 -42698 43277 7804963386134833 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -790 7964 7804956101515418 CMakeFiles/flash 9629bf95c72f7b8b -790 7964 7804956101515418 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b -131 22525 7804964453941426 build.ninja dff3862ec6410c11 -489 1042 7804964460574785 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -489 1042 7804964460574785 bootloader/bootloader.elf d3b44b7f4bdbe5ec -489 1042 7804964460574785 bootloader/bootloader.bin d3b44b7f4bdbe5ec -489 1042 7804964460574785 bootloader/bootloader.map d3b44b7f4bdbe5ec -489 1042 7804964460574785 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -489 1042 7804964460574785 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -489 1042 7804964460574785 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -489 1042 7804964460574785 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -1044 1189 7804964466130223 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -1044 1189 7804964466130223 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -1189 1401 7804964469546013 CMakeFiles/bootloader-complete 99c64e466faf136a -1189 1401 7804964469546013 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -1189 1401 7804964469546013 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -1189 1401 7804964469546013 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -479 2404 7804964460476069 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -332 5738 7804964458989000 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -5738 6092 7804964513025763 esp-idf/main/libmain.a 918cc5d87c8b80ca -6092 32237 7804964777041874 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -6092 32237 7804964777041874 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -32237 35619 7804964778052277 SIM_S3_1.elf 28e0101e6768c40e -35620 36191 7804964817474794 .bin_timestamp 697fc0034cccc03a -35620 36191 7804964817474794 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -36192 36354 7804964817606047 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -36192 36354 7804964817606047 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -416 769 7804967689664842 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -416 769 7804967689664842 bootloader/bootloader.elf d3b44b7f4bdbe5ec -416 769 7804967689664842 bootloader/bootloader.bin d3b44b7f4bdbe5ec -416 769 7804967689664842 bootloader/bootloader.map d3b44b7f4bdbe5ec -416 769 7804967689664842 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -416 769 7804967689664842 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -416 769 7804967689664842 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -416 769 7804967689664842 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -770 864 7804967693209418 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -770 864 7804967693209418 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -864 1010 7804967695501478 CMakeFiles/bootloader-complete 99c64e466faf136a -864 1010 7804967695501478 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -864 1010 7804967695501478 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -864 1010 7804967695501478 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -277 1726 7804967688271072 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -1727 2059 7804967702776978 esp-idf/main/libmain.a 918cc5d87c8b80ca -2059 24597 7804967930951421 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -2059 24597 7804967930951421 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -24598 27343 7804967931454009 SIM_S3_1.elf 28e0101e6768c40e -27344 27790 7804967963312958 .bin_timestamp 697fc0034cccc03a -27344 27790 7804967963312958 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -27790 27923 7804967963405595 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -27790 27923 7804967963405595 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -402 776 7804968392494809 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -402 776 7804968392494809 bootloader/bootloader.elf d3b44b7f4bdbe5ec -402 776 7804968392494809 bootloader/bootloader.bin d3b44b7f4bdbe5ec -402 776 7804968392494809 bootloader/bootloader.map d3b44b7f4bdbe5ec -402 776 7804968392494809 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -402 776 7804968392494809 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -402 776 7804968392494809 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -402 776 7804968392494809 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -777 867 7804968396269155 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -777 867 7804968396269155 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -867 1010 7804968398495572 CMakeFiles/bootloader-complete 99c64e466faf136a -867 1010 7804968398495572 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -867 1010 7804968398495572 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -867 1010 7804968398495572 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -265 1683 7804968391117188 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -1684 2008 7804968405329985 esp-idf/main/libmain.a 918cc5d87c8b80ca -2008 22610 7804968614113984 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -2008 22610 7804968614113984 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -22611 25231 7804968614600724 SIM_S3_1.elf 28e0101e6768c40e -25232 25655 7804968644947740 .bin_timestamp 697fc0034cccc03a -25232 25655 7804968644947740 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -25655 25779 7804968645044865 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -25655 25779 7804968645044865 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -302 447 7804968812474527 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -302 447 7804968812474527 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -283 542 7804968812280255 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -283 542 7804968812280255 bootloader/bootloader.elf d3b44b7f4bdbe5ec -283 542 7804968812280255 bootloader/bootloader.bin d3b44b7f4bdbe5ec -283 542 7804968812280255 bootloader/bootloader.map d3b44b7f4bdbe5ec -283 542 7804968812280255 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -283 542 7804968812280255 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -283 542 7804968812280255 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -283 542 7804968812280255 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -543 607 7804968814892919 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -543 607 7804968814892919 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -607 766 7804968817024564 CMakeFiles/bootloader-complete 99c64e466faf136a -607 766 7804968817024564 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -607 766 7804968817024564 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -607 766 7804968817024564 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -767 7750 7804968817122720 CMakeFiles/flash 9629bf95c72f7b8b -767 7750 7804968817122720 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b -422 813 7804969114170764 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -422 813 7804969114170764 bootloader/bootloader.elf d3b44b7f4bdbe5ec -422 813 7804969114170764 bootloader/bootloader.bin d3b44b7f4bdbe5ec -422 813 7804969114170764 bootloader/bootloader.map d3b44b7f4bdbe5ec -422 813 7804969114170764 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -422 813 7804969114170764 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -422 813 7804969114170764 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -422 813 7804969114170764 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -814 919 7804969118085994 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -814 919 7804969118085994 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -919 1075 7804969120571722 CMakeFiles/bootloader-complete 99c64e466faf136a -919 1075 7804969120571722 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -919 1075 7804969120571722 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -919 1075 7804969120571722 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -284 1744 7804969112792634 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -1745 2063 7804969127394882 esp-idf/main/libmain.a 918cc5d87c8b80ca -2063 24753 7804969356809840 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -2063 24753 7804969356809840 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -24754 27877 7804969357476263 SIM_S3_1.elf 28e0101e6768c40e -27878 28365 7804969393487948 .bin_timestamp 697fc0034cccc03a -27878 28365 7804969393487948 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -28366 28536 7804969393598786 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -28366 28536 7804969393598786 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -441 794 7804969471059603 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -441 794 7804969471059603 bootloader/bootloader.elf d3b44b7f4bdbe5ec -441 794 7804969471059603 bootloader/bootloader.bin d3b44b7f4bdbe5ec -441 794 7804969471059603 bootloader/bootloader.map d3b44b7f4bdbe5ec -441 794 7804969471059603 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -441 794 7804969471059603 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -441 794 7804969471059603 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -441 794 7804969471059603 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -796 891 7804969474606581 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -796 891 7804969474606581 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -891 1041 7804969476939821 CMakeFiles/bootloader-complete 99c64e466faf136a -891 1041 7804969476939821 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -891 1041 7804969476939821 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -891 1041 7804969476939821 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -296 4483 7804969469606373 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4484 4821 7804969511489614 esp-idf/main/libmain.a 918cc5d87c8b80ca -4821 26950 7804969735549621 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -4821 26950 7804969735549621 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -26950 29628 7804969736144925 SIM_S3_1.elf 28e0101e6768c40e -29629 30047 7804969767026109 .bin_timestamp 697fc0034cccc03a -29629 30047 7804969767026109 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -30048 30175 7804969767125562 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -30048 30175 7804969767125562 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -292 444 7804969886754117 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -292 444 7804969886754117 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -274 541 7804969886563378 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -274 541 7804969886563378 bootloader/bootloader.elf d3b44b7f4bdbe5ec -274 541 7804969886563378 bootloader/bootloader.bin d3b44b7f4bdbe5ec -274 541 7804969886563378 bootloader/bootloader.map d3b44b7f4bdbe5ec -274 541 7804969886563378 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -274 541 7804969886563378 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -274 541 7804969886563378 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -274 541 7804969886563378 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -542 606 7804969889247084 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -542 606 7804969889247084 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -606 765 7804969891370635 CMakeFiles/bootloader-complete 99c64e466faf136a -606 765 7804969891370635 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -606 765 7804969891370635 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -606 765 7804969891370635 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -766 8085 7804969891485319 CMakeFiles/flash 9629bf95c72f7b8b -766 8085 7804969891485319 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b -444 862 7804971143803395 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -444 862 7804971143803395 bootloader/bootloader.elf d3b44b7f4bdbe5ec -444 862 7804971143803395 bootloader/bootloader.bin d3b44b7f4bdbe5ec -444 862 7804971143803395 bootloader/bootloader.map d3b44b7f4bdbe5ec -444 862 7804971143803395 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -444 862 7804971143803395 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -444 862 7804971143803395 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -444 862 7804971143803395 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -864 962 7804971147997995 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -864 962 7804971147997995 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -962 1139 7804971150632395 CMakeFiles/bootloader-complete 99c64e466faf136a -962 1139 7804971150632395 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -962 1139 7804971150632395 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -962 1139 7804971150632395 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -433 1909 7804971143686747 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -291 4747 7804971142271705 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4748 5184 7804971186838964 esp-idf/main/libmain.a 918cc5d87c8b80ca -5184 27494 7804971413704889 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -5184 27494 7804971413704889 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -27495 30169 7804971414215216 SIM_S3_1.elf 28e0101e6768c40e -30170 30720 7804971446435437 .bin_timestamp 697fc0034cccc03a -30170 30720 7804971446435437 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -30720 30868 7804971446551424 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -30720 30868 7804971446551424 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -435 808 7804972007200260 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -435 808 7804972007200260 bootloader/bootloader.elf d3b44b7f4bdbe5ec -435 808 7804972007200260 bootloader/bootloader.bin d3b44b7f4bdbe5ec -435 808 7804972007200260 bootloader/bootloader.map d3b44b7f4bdbe5ec -435 808 7804972007200260 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -435 808 7804972007200260 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -435 808 7804972007200260 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -435 808 7804972007200260 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -810 907 7804972010953056 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -810 907 7804972010953056 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -907 1073 7804972013465682 CMakeFiles/bootloader-complete 99c64e466faf136a -907 1073 7804972013465682 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -907 1073 7804972013465682 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -907 1073 7804972013465682 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -423 1177 7804972007091662 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -284 4427 7804972005696221 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4427 4879 7804972047130909 esp-idf/main/libmain.a 918cc5d87c8b80ca -4879 25823 7804972260602467 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -4879 25823 7804972260602467 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -25823 28363 7804972261086355 SIM_S3_1.elf 28e0101e6768c40e -28363 28835 7804972291089260 .bin_timestamp 697fc0034cccc03a -28363 28835 7804972291089260 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -28835 28964 7804972291206609 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -28835 28964 7804972291206609 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -314 449 7804972338760256 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -314 449 7804972338760256 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -297 556 7804972338587001 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -297 556 7804972338587001 bootloader/bootloader.elf d3b44b7f4bdbe5ec -297 556 7804972338587001 bootloader/bootloader.bin d3b44b7f4bdbe5ec -297 556 7804972338587001 bootloader/bootloader.map d3b44b7f4bdbe5ec -297 556 7804972338587001 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -297 556 7804972338587001 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -297 556 7804972338587001 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -297 556 7804972338587001 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -557 621 7804972341184092 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -557 621 7804972341184092 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -621 763 7804972343157810 CMakeFiles/bootloader-complete 99c64e466faf136a -621 763 7804972343157810 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -621 763 7804972343157810 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -621 763 7804972343157810 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -764 7929 7804972343254959 CMakeFiles/flash 9629bf95c72f7b8b -764 7929 7804972343254959 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b -443 798 7804972748118863 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -443 798 7804972748118863 bootloader/bootloader.elf d3b44b7f4bdbe5ec -443 798 7804972748118863 bootloader/bootloader.bin d3b44b7f4bdbe5ec -443 798 7804972748118863 bootloader/bootloader.map d3b44b7f4bdbe5ec -443 798 7804972748118863 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -443 798 7804972748118863 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -443 798 7804972748118863 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -443 798 7804972748118863 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -800 895 7804972751679387 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -800 895 7804972751679387 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -895 1093 7804972754446456 CMakeFiles/bootloader-complete 99c64e466faf136a -895 1093 7804972754446456 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -895 1093 7804972754446456 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -895 1093 7804972754446456 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -288 4629 7804972746565134 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4630 4976 7804972789979307 esp-idf/main/libmain.a 918cc5d87c8b80ca -4976 25881 7804973001734806 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -4976 25881 7804973001734806 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -25882 28496 7804973002423840 SIM_S3_1.elf 28e0101e6768c40e -28497 28921 7804973032798241 .bin_timestamp 697fc0034cccc03a -28497 28921 7804973032798241 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -28921 29066 7804973032898412 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -28921 29066 7804973032898412 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -278 455 7804974226587911 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -278 455 7804974226587911 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -262 572 7804974226425813 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -262 572 7804974226425813 bootloader/bootloader.elf d3b44b7f4bdbe5ec -262 572 7804974226425813 bootloader/bootloader.bin d3b44b7f4bdbe5ec -262 572 7804974226425813 bootloader/bootloader.map d3b44b7f4bdbe5ec -262 572 7804974226425813 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -262 572 7804974226425813 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -262 572 7804974226425813 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -262 572 7804974226425813 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -573 635 7804974229531305 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -573 635 7804974229531305 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -635 790 7804974231587118 CMakeFiles/bootloader-complete 99c64e466faf136a -635 790 7804974231587118 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -635 790 7804974231587118 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -635 790 7804974231587118 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -791 7937 7804974231684886 CMakeFiles/flash 9629bf95c72f7b8b -791 7937 7804974231684886 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b -409 841 7804975183112519 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -409 841 7804975183112519 bootloader/bootloader.elf d3b44b7f4bdbe5ec -409 841 7804975183112519 bootloader/bootloader.bin d3b44b7f4bdbe5ec -409 841 7804975183112519 bootloader/bootloader.map d3b44b7f4bdbe5ec -409 841 7804975183112519 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -409 841 7804975183112519 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -409 841 7804975183112519 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -409 841 7804975183112519 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -842 930 7804975187437181 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -842 930 7804975187437181 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -930 1079 7804975189696012 CMakeFiles/bootloader-complete 99c64e466faf136a -930 1079 7804975189696012 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -930 1079 7804975189696012 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -930 1079 7804975189696012 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -275 4421 7804975181775758 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4422 4764 7804975223234112 esp-idf/main/libmain.a 918cc5d87c8b80ca -4764 25730 7804975435596833 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -4764 25730 7804975435596833 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -25730 28330 7804975436316652 SIM_S3_1.elf 28e0101e6768c40e -28331 28747 7804975466385021 .bin_timestamp 697fc0034cccc03a -28331 28747 7804975466385021 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -28747 28868 7804975466490731 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -28747 28868 7804975466490731 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -466 806 7804975706239228 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -466 806 7804975706239228 bootloader/bootloader.elf d3b44b7f4bdbe5ec -466 806 7804975706239228 bootloader/bootloader.bin d3b44b7f4bdbe5ec -466 806 7804975706239228 bootloader/bootloader.map d3b44b7f4bdbe5ec -466 806 7804975706239228 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -466 806 7804975706239228 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -466 806 7804975706239228 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -466 806 7804975706239228 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -808 899 7804975709655014 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -808 899 7804975709655014 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -899 1051 7804975711976579 CMakeFiles/bootloader-complete 99c64e466faf136a -899 1051 7804975711976579 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -899 1051 7804975711976579 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -899 1051 7804975711976579 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -282 1690 7804975704393293 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -1691 1992 7804975718487503 esp-idf/main/libmain.a 918cc5d87c8b80ca -1992 23047 7804975931529839 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -1992 23047 7804975931529839 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -325 593 7804975950179423 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -325 593 7804975950179423 bootloader/bootloader.elf d3b44b7f4bdbe5ec -325 593 7804975950179423 bootloader/bootloader.bin d3b44b7f4bdbe5ec -325 593 7804975950179423 bootloader/bootloader.map d3b44b7f4bdbe5ec -325 593 7804975950179423 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -325 593 7804975950179423 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -325 593 7804975950179423 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -325 593 7804975950179423 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -594 665 7804975952879191 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -594 665 7804975952879191 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -666 822 7804975955044394 CMakeFiles/bootloader-complete 99c64e466faf136a -666 822 7804975955044394 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -666 822 7804975955044394 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -666 822 7804975955044394 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -23047 25926 7804975932043061 SIM_S3_1.elf 28e0101e6768c40e -25927 26427 7804975965715878 .bin_timestamp 697fc0034cccc03a -25927 26427 7804975965715878 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -26427 26576 7804975965820087 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -26427 26576 7804975965820087 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -300 2962 7804975949943400 SIM_S3_1.elf 28e0101e6768c40e -2963 3311 7804975979934003 .bin_timestamp 697fc0034cccc03a -2963 3311 7804975979934003 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -3311 3432 7804975980037569 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -3311 3432 7804975980037569 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -285 435 7804976026144595 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -285 435 7804976026144595 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -266 543 7804976025963537 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -266 543 7804976025963537 bootloader/bootloader.elf d3b44b7f4bdbe5ec -266 543 7804976025963537 bootloader/bootloader.bin d3b44b7f4bdbe5ec -266 543 7804976025963537 bootloader/bootloader.map d3b44b7f4bdbe5ec -266 543 7804976025963537 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -266 543 7804976025963537 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -266 543 7804976025963537 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -266 543 7804976025963537 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -544 613 7804976028733753 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -544 613 7804976028733753 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -613 758 7804976030783914 CMakeFiles/bootloader-complete 99c64e466faf136a -613 758 7804976030783914 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -613 758 7804976030783914 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -613 758 7804976030783914 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -396 721 7804976104744316 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -396 721 7804976104744316 bootloader/bootloader.elf d3b44b7f4bdbe5ec -396 721 7804976104744316 bootloader/bootloader.bin d3b44b7f4bdbe5ec -396 721 7804976104744316 bootloader/bootloader.map d3b44b7f4bdbe5ec -396 721 7804976104744316 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -396 721 7804976104744316 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -396 721 7804976104744316 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -396 721 7804976104744316 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -722 806 7804976108009961 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -722 806 7804976108009961 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -806 950 7804976110188407 CMakeFiles/bootloader-complete 99c64e466faf136a -806 950 7804976110188407 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -806 950 7804976110188407 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -806 950 7804976110188407 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -260 1595 7804976103386507 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -1596 1904 7804976116737931 esp-idf/main/libmain.a 918cc5d87c8b80ca -1904 22505 7804976325186120 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -1904 22505 7804976325186120 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -22505 25040 7804976325840715 SIM_S3_1.elf 28e0101e6768c40e -25041 25447 7804976355159246 .bin_timestamp 697fc0034cccc03a -25041 25447 7804976355159246 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -25447 25566 7804976355256112 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -25447 25566 7804976355256112 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -283 423 7804976573802064 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -283 423 7804976573802064 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -266 514 7804976573622351 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -266 514 7804976573622351 bootloader/bootloader.elf d3b44b7f4bdbe5ec -266 514 7804976573622351 bootloader/bootloader.bin d3b44b7f4bdbe5ec -266 514 7804976573622351 bootloader/bootloader.map d3b44b7f4bdbe5ec -266 514 7804976573622351 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -266 514 7804976573622351 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -266 514 7804976573622351 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -266 514 7804976573622351 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -515 576 7804976576134051 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -515 576 7804976576134051 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -576 715 7804976578015977 CMakeFiles/bootloader-complete 99c64e466faf136a -576 715 7804976578015977 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -576 715 7804976578015977 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -576 715 7804976578015977 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -341 488 7804976859569239 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -341 488 7804976859569239 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -323 584 7804976859373864 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -323 584 7804976859373864 bootloader/bootloader.elf d3b44b7f4bdbe5ec -323 584 7804976859373864 bootloader/bootloader.bin d3b44b7f4bdbe5ec -323 584 7804976859373864 bootloader/bootloader.map d3b44b7f4bdbe5ec -323 584 7804976859373864 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -323 584 7804976859373864 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -323 584 7804976859373864 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -323 584 7804976859373864 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -585 651 7804976861983816 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -585 651 7804976861983816 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -651 792 7804976863981370 CMakeFiles/bootloader-complete 99c64e466faf136a -651 792 7804976863981370 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -651 792 7804976863981370 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -651 792 7804976863981370 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -311 529 7804977026354403 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -470 757 7804977027950031 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -470 757 7804977027950031 bootloader/bootloader.elf d3b44b7f4bdbe5ec -470 757 7804977027950031 bootloader/bootloader.bin d3b44b7f4bdbe5ec -470 757 7804977027950031 bootloader/bootloader.map d3b44b7f4bdbe5ec -470 757 7804977027950031 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -470 757 7804977027950031 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -470 757 7804977027950031 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -470 757 7804977027950031 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -759 827 7804977030836189 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -759 827 7804977030836189 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -530 893 7804977028546026 esp-idf/main/libmain.a 918cc5d87c8b80ca -827 1055 7804977033428929 CMakeFiles/bootloader-complete 99c64e466faf136a -827 1055 7804977033428929 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -827 1055 7804977033428929 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -827 1055 7804977033428929 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -893 23266 7804977255334229 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -893 23266 7804977255334229 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -23267 26438 7804977255912483 SIM_S3_1.elf 28e0101e6768c40e -26439 26878 7804977291843726 .bin_timestamp 697fc0034cccc03a -26439 26878 7804977291843726 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -671 1025 7804984451574562 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -671 1025 7804984451574562 bootloader/bootloader.elf d3b44b7f4bdbe5ec -671 1025 7804984451574562 bootloader/bootloader.bin d3b44b7f4bdbe5ec -671 1025 7804984451574562 bootloader/bootloader.map d3b44b7f4bdbe5ec -671 1025 7804984451574562 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -671 1025 7804984451574562 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -671 1025 7804984451574562 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -671 1025 7804984451574562 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -1028 1142 7804984455140042 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -1028 1142 7804984455140042 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -1142 1311 7804984457851452 CMakeFiles/bootloader-complete 99c64e466faf136a -1142 1311 7804984457851452 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -1142 1311 7804984457851452 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -1142 1311 7804984457851452 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -526 2120 7804984450125490 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -385 4841 7804984448715970 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4841 5182 7804984493236605 esp-idf/main/libmain.a 918cc5d87c8b80ca -5183 26901 7804984713031762 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -5183 26901 7804984713031762 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -26901 29688 7804984713865022 SIM_S3_1.elf 28e0101e6768c40e -29689 30154 7804984746226681 .bin_timestamp 697fc0034cccc03a -29689 30154 7804984746226681 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -30155 30314 7804984746415447 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -30155 30314 7804984746415447 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -279 592 7804985460342265 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -425 769 7804985461803633 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -425 769 7804985461803633 bootloader/bootloader.elf d3b44b7f4bdbe5ec -425 769 7804985461803633 bootloader/bootloader.bin d3b44b7f4bdbe5ec -425 769 7804985461803633 bootloader/bootloader.map d3b44b7f4bdbe5ec -425 769 7804985461803633 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -425 769 7804985461803633 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -425 769 7804985461803633 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -425 769 7804985461803633 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -770 858 7804985465233444 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -770 858 7804985465233444 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -859 1002 7804985467455449 CMakeFiles/bootloader-complete 99c64e466faf136a -859 1002 7804985467455449 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -859 1002 7804985467455449 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -859 1002 7804985467455449 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -425 748 7804985563876569 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -425 748 7804985563876569 bootloader/bootloader.elf d3b44b7f4bdbe5ec -425 748 7804985563876569 bootloader/bootloader.bin d3b44b7f4bdbe5ec -425 748 7804985563876569 bootloader/bootloader.map d3b44b7f4bdbe5ec -425 748 7804985563876569 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -425 748 7804985563876569 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -425 748 7804985563876569 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -425 748 7804985563876569 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -750 836 7804985567124188 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -750 836 7804985567124188 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -836 983 7804985569361014 CMakeFiles/bootloader-complete 99c64e466faf136a -836 983 7804985569361014 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -836 983 7804985569361014 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -836 983 7804985569361014 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -283 1755 7804985562478621 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -1756 2055 7804985577207314 esp-idf/main/libmain.a 918cc5d87c8b80ca -2056 22916 7804985788287782 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -2056 22916 7804985788287782 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -22916 25419 7804985788810504 SIM_S3_1.elf 28e0101e6768c40e -25420 25908 7804985818625087 .bin_timestamp 697fc0034cccc03a -25420 25908 7804985818625087 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -25909 26045 7804985818735113 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -25909 26045 7804985818735113 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -284 568 7804987190803682 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -426 826 7804987192229064 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -426 826 7804987192229064 bootloader/bootloader.elf d3b44b7f4bdbe5ec -426 826 7804987192229064 bootloader/bootloader.bin d3b44b7f4bdbe5ec -426 826 7804987192229064 bootloader/bootloader.map d3b44b7f4bdbe5ec -426 826 7804987192229064 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -426 826 7804987192229064 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -426 826 7804987192229064 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -426 826 7804987192229064 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -828 918 7804987196239692 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -828 918 7804987196239692 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -918 1069 7804987198533512 CMakeFiles/bootloader-complete 99c64e466faf136a -918 1069 7804987198533512 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -918 1069 7804987198533512 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -918 1069 7804987198533512 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -416 1867 7804987192123979 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -1867 2176 7804987206633083 esp-idf/main/libmain.a 918cc5d87c8b80ca -2176 23868 7804987426173233 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -2176 23868 7804987426173233 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -23869 26364 7804987426650292 SIM_S3_1.elf 28e0101e6768c40e -26365 26801 7804987455878342 .bin_timestamp 697fc0034cccc03a -26365 26801 7804987455878342 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -26801 26931 7804987455974683 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -26801 26931 7804987455974683 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -307 613 7804987617282383 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -307 613 7804987617282383 bootloader/bootloader.elf d3b44b7f4bdbe5ec -307 613 7804987617282383 bootloader/bootloader.bin d3b44b7f4bdbe5ec -307 613 7804987617282383 bootloader/bootloader.map d3b44b7f4bdbe5ec -307 613 7804987617282383 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -307 613 7804987617282383 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -307 613 7804987617282383 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -307 613 7804987617282383 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -614 693 7804987620344933 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -614 693 7804987620344933 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -693 827 7804987622381929 CMakeFiles/bootloader-complete 99c64e466faf136a -693 827 7804987622381929 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -693 827 7804987622381929 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -693 827 7804987622381929 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -296 1559 7804987617167757 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -1560 1860 7804987629807259 esp-idf/main/libmain.a 918cc5d87c8b80ca -1860 24054 7804987854105846 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -1860 24054 7804987854105846 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -24055 26718 7804987854751077 SIM_S3_1.elf 28e0101e6768c40e -26719 27123 7804987885332291 .bin_timestamp 697fc0034cccc03a -26719 27123 7804987885332291 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -27124 27238 7804987885433442 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -27124 27238 7804987885433442 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -495 861 7804991898875512 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -495 861 7804991898875512 bootloader/bootloader.elf d3b44b7f4bdbe5ec -495 861 7804991898875512 bootloader/bootloader.bin d3b44b7f4bdbe5ec -495 861 7804991898875512 bootloader/bootloader.map d3b44b7f4bdbe5ec -495 861 7804991898875512 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -495 861 7804991898875512 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -495 861 7804991898875512 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -495 861 7804991898875512 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -862 955 7804991902535746 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -862 955 7804991902535746 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -955 1124 7804991905030350 CMakeFiles/bootloader-complete 99c64e466faf136a -955 1124 7804991905030350 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -955 1124 7804991905030350 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -955 1124 7804991905030350 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -296 4473 7804991896894205 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4474 4920 7804991938668085 esp-idf/main/libmain.a 918cc5d87c8b80ca -4920 27235 7804992165709384 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -4920 27235 7804992165709384 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -27235 29834 7804992166273968 SIM_S3_1.elf 28e0101e6768c40e -29835 30262 7804992196445716 .bin_timestamp 697fc0034cccc03a -29835 30262 7804992196445716 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -30262 30394 7804992196543075 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -30262 30394 7804992196543075 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -573 936 7804992247560337 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -573 936 7804992247560337 bootloader/bootloader.elf d3b44b7f4bdbe5ec -573 936 7804992247560337 bootloader/bootloader.bin d3b44b7f4bdbe5ec -573 936 7804992247560337 bootloader/bootloader.map d3b44b7f4bdbe5ec -573 936 7804992247560337 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -573 936 7804992247560337 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -573 936 7804992247560337 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -573 936 7804992247560337 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -939 1034 7804992251214835 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -939 1034 7804992251214835 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -1034 1212 7804992253842004 CMakeFiles/bootloader-complete 99c64e466faf136a -1034 1212 7804992253842004 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -1034 1212 7804992253842004 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -1034 1212 7804992253842004 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -408 4554 7804992245915403 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4555 4875 7804992287375314 esp-idf/main/libmain.a 918cc5d87c8b80ca -4875 26717 7804992508522016 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -4875 26717 7804992508522016 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -26717 29239 7804992508992150 SIM_S3_1.elf 28e0101e6768c40e -29240 29645 7804992538168285 .bin_timestamp 697fc0034cccc03a -29240 29645 7804992538168285 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -29645 29762 7804992538276549 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -29645 29762 7804992538276549 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -277 419 7804993890369283 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -277 419 7804993890369283 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -260 493 7804993890228529 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -260 493 7804993890228529 bootloader/bootloader.elf d3b44b7f4bdbe5ec -260 493 7804993890228529 bootloader/bootloader.bin d3b44b7f4bdbe5ec -260 493 7804993890228529 bootloader/bootloader.map d3b44b7f4bdbe5ec -260 493 7804993890228529 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -260 493 7804993890228529 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -260 493 7804993890228529 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -260 493 7804993890228529 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -494 558 7804993892549551 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -494 558 7804993892549551 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -558 713 7804993894657648 CMakeFiles/bootloader-complete 99c64e466faf136a -558 713 7804993894657648 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -558 713 7804993894657648 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -558 713 7804993894657648 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -713 7845 7804993894752866 CMakeFiles/flash 9629bf95c72f7b8b -713 7845 7804993894752866 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b -431 858 7804995560984315 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -431 858 7804995560984315 bootloader/bootloader.elf d3b44b7f4bdbe5ec -431 858 7804995560984315 bootloader/bootloader.bin d3b44b7f4bdbe5ec -431 858 7804995560984315 bootloader/bootloader.map d3b44b7f4bdbe5ec -431 858 7804995560984315 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -431 858 7804995560984315 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -431 858 7804995560984315 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -431 858 7804995560984315 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -860 957 7804995565230521 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -860 957 7804995565230521 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -957 1161 7804995568155981 CMakeFiles/bootloader-complete 99c64e466faf136a -957 1161 7804995568155981 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -957 1161 7804995568155981 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -957 1161 7804995568155981 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -422 1992 7804995560894229 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -283 4703 7804995559500113 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4704 5042 7804995603711916 esp-idf/main/libmain.a 918cc5d87c8b80ca -5042 28094 7804995836989230 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -5042 28094 7804995836989230 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -28095 30692 7804995837623312 SIM_S3_1.elf 28e0101e6768c40e -30693 31164 7804995868201189 .bin_timestamp 697fc0034cccc03a -30693 31164 7804995868201189 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -31164 31299 7804995868322734 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -31164 31299 7804995868322734 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -427 782 7804996082482508 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -427 782 7804996082482508 bootloader/bootloader.elf d3b44b7f4bdbe5ec -427 782 7804996082482508 bootloader/bootloader.bin d3b44b7f4bdbe5ec -427 782 7804996082482508 bootloader/bootloader.map d3b44b7f4bdbe5ec -427 782 7804996082482508 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -427 782 7804996082482508 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -427 782 7804996082482508 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -427 782 7804996082482508 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -784 879 7804996086056602 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -784 879 7804996086056602 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -879 1030 7804996088405728 CMakeFiles/bootloader-complete 99c64e466faf136a -879 1030 7804996088405728 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -879 1030 7804996088405728 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -879 1030 7804996088405728 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -417 1871 7804996082392488 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -280 4601 7804996081016886 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4602 4943 7804996124222741 esp-idf/main/libmain.a 918cc5d87c8b80ca -4943 27785 7804996355569464 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -4943 27785 7804996355569464 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -27786 30397 7804996356075881 SIM_S3_1.elf 28e0101e6768c40e -30398 30844 7804996386545600 .bin_timestamp 697fc0034cccc03a -30398 30844 7804996386545600 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -30844 30975 7804996386662032 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -30844 30975 7804996386662032 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -313 464 7804996492596276 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -313 464 7804996492596276 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -294 565 7804996492407193 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -294 565 7804996492407193 bootloader/bootloader.elf d3b44b7f4bdbe5ec -294 565 7804996492407193 bootloader/bootloader.bin d3b44b7f4bdbe5ec -294 565 7804996492407193 bootloader/bootloader.map d3b44b7f4bdbe5ec -294 565 7804996492407193 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -294 565 7804996492407193 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -294 565 7804996492407193 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -294 565 7804996492407193 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -567 629 7804996495157633 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -567 629 7804996495157633 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -629 777 7804996497150541 CMakeFiles/bootloader-complete 99c64e466faf136a -629 777 7804996497150541 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -629 777 7804996497150541 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -629 777 7804996497150541 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -778 7987 7804996497250792 CMakeFiles/flash 9629bf95c72f7b8b -778 7987 7804996497250792 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b -574 937 7804997291716902 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -574 937 7804997291716902 bootloader/bootloader.elf d3b44b7f4bdbe5ec -574 937 7804997291716902 bootloader/bootloader.bin d3b44b7f4bdbe5ec -574 937 7804997291716902 bootloader/bootloader.map d3b44b7f4bdbe5ec -574 937 7804997291716902 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -574 937 7804997291716902 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -574 937 7804997291716902 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -574 937 7804997291716902 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -938 1037 7804997295360904 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -938 1037 7804997295360904 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -1038 1229 7804997298125039 CMakeFiles/bootloader-complete 99c64e466faf136a -1038 1229 7804997298125039 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -1038 1229 7804997298125039 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -1038 1229 7804997298125039 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -412 4759 7804997290096972 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4761 5113 7804997333576603 esp-idf/main/libmain.a 918cc5d87c8b80ca -415 826 7804997669215077 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -415 826 7804997669215077 bootloader/bootloader.elf d3b44b7f4bdbe5ec -415 826 7804997669215077 bootloader/bootloader.bin d3b44b7f4bdbe5ec -415 826 7804997669215077 bootloader/bootloader.map d3b44b7f4bdbe5ec -415 826 7804997669215077 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -415 826 7804997669215077 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -415 826 7804997669215077 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -415 826 7804997669215077 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -828 925 7804997673315417 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -828 925 7804997673315417 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -925 1078 7804997675715138 CMakeFiles/bootloader-complete 99c64e466faf136a -925 1078 7804997675715138 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -925 1078 7804997675715138 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -925 1078 7804997675715138 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -405 1926 7804997669115024 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -267 4633 7804997667734788 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4633 4958 7804997711402824 esp-idf/main/libmain.a 918cc5d87c8b80ca -4958 27251 7804997936934235 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -4958 27251 7804997936934235 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -27252 30079 7804997937584816 SIM_S3_1.elf 28e0101e6768c40e -30080 30600 7804997970937873 .bin_timestamp 697fc0034cccc03a -30080 30600 7804997970937873 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -30600 30788 7804997971068114 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -30600 30788 7804997971068114 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -557 1013 7804998484372745 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -557 1013 7804998484372745 bootloader/bootloader.elf d3b44b7f4bdbe5ec -557 1013 7804998484372745 bootloader/bootloader.bin d3b44b7f4bdbe5ec -557 1013 7804998484372745 bootloader/bootloader.map d3b44b7f4bdbe5ec -557 1013 7804998484372745 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -557 1013 7804998484372745 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -557 1013 7804998484372745 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -557 1013 7804998484372745 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -1015 1130 7804998488939289 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -1015 1130 7804998488939289 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -1130 1311 7804998491773997 CMakeFiles/bootloader-complete 99c64e466faf136a -1130 1311 7804998491773997 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -1130 1311 7804998491773997 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -1130 1311 7804998491773997 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -544 2237 7804998484244167 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -374 5080 7804998482547282 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -5080 5414 7804998529604250 esp-idf/main/libmain.a 918cc5d87c8b80ca -5415 28467 7804998762927548 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -5415 28467 7804998762927548 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -28468 31249 7804998763465403 SIM_S3_1.elf 28e0101e6768c40e -31250 31697 7804998795650941 .bin_timestamp 697fc0034cccc03a -31250 31697 7804998795650941 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -31697 31842 7804998795765916 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -31697 31842 7804998795765916 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -468 942 7804998831319674 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -468 942 7804998831319674 bootloader/bootloader.elf d3b44b7f4bdbe5ec -468 942 7804998831319674 bootloader/bootloader.bin d3b44b7f4bdbe5ec -468 942 7804998831319674 bootloader/bootloader.map d3b44b7f4bdbe5ec -468 942 7804998831319674 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -468 942 7804998831319674 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -468 942 7804998831319674 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -468 942 7804998831319674 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -943 1048 7804998836063904 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -943 1048 7804998836063904 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -1048 1239 7804998838906723 CMakeFiles/bootloader-complete 99c64e466faf136a -1048 1239 7804998838906723 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -1048 1239 7804998838906723 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -1048 1239 7804998838906723 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -457 2087 7804998831206635 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -31842 39048 7804998797213343 CMakeFiles/flash 9629bf95c72f7b8b -31842 39048 7804998797213343 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b -299 4838 7804998829623202 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4838 5231 7804998875016983 esp-idf/main/libmain.a 918cc5d87c8b80ca -5231 27499 7804999100979138 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -5231 27499 7804999100979138 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -27499 30297 7804999101617744 SIM_S3_1.elf 28e0101e6768c40e -30298 30810 7804999134600348 .bin_timestamp 697fc0034cccc03a -30298 30810 7804999134600348 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -30810 30950 7804999134699254 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -30810 30950 7804999134699254 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -456 852 7805000276761171 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -456 852 7805000276761171 bootloader/bootloader.elf d3b44b7f4bdbe5ec -456 852 7805000276761171 bootloader/bootloader.bin d3b44b7f4bdbe5ec -456 852 7805000276761171 bootloader/bootloader.map d3b44b7f4bdbe5ec -456 852 7805000276761171 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -456 852 7805000276761171 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -456 852 7805000276761171 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -456 852 7805000276761171 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -854 952 7805000280729523 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -854 952 7805000280729523 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -952 1123 7805000283315271 CMakeFiles/bootloader-complete 99c64e466faf136a -952 1123 7805000283315271 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -952 1123 7805000283315271 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -952 1123 7805000283315271 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -445 1974 7805000276647207 esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj 61f67147c483b30c -285 4558 7805000275047806 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj e7294a84a68ba41 -4559 4903 7805000317742108 esp-idf/main/libmain.a 918cc5d87c8b80ca -4903 26985 7805000541552747 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -4903 26985 7805000541552747 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c -26985 29657 7805000542047884 SIM_S3_1.elf 28e0101e6768c40e -29658 30157 7805000573653434 .bin_timestamp 697fc0034cccc03a -29658 30157 7805000573653434 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a -30158 30301 7805000573771885 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -30158 30301 7805000573771885 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -296 434 7805000752482455 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -296 434 7805000752482455 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 -277 552 7805000752298414 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -277 552 7805000752298414 bootloader/bootloader.elf d3b44b7f4bdbe5ec -277 552 7805000752298414 bootloader/bootloader.bin d3b44b7f4bdbe5ec -277 552 7805000752298414 bootloader/bootloader.map d3b44b7f4bdbe5ec -277 552 7805000752298414 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec -277 552 7805000752298414 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec -277 552 7805000752298414 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec -277 552 7805000752298414 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec -553 618 7805000755055697 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -553 618 7805000755055697 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 -618 765 7805000757066060 CMakeFiles/bootloader-complete 99c64e466faf136a -618 765 7805000757066060 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a -618 765 7805000757066060 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a -618 765 7805000757066060 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +365 1515 7805583597546138 esp-idf/main/CMakeFiles/__idf_main.dir/assets/font_alipuhui20.c.obj d7d64233c95503d9 +384 1594 7805583597731240 esp-idf/main/CMakeFiles/__idf_main.dir/bt/esp_hidd_prf_api.c.obj bba24b64b3e75d0e +396 1628 7805583597854027 esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_dev.c.obj 1585dc9b990d519a +374 3656 7805583597636166 esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj e53b1801a635391 +577 1340 7805583599668556 bootloader/bootloader.map d3b44b7f4bdbe5ec +577 1340 7805583599668556 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +577 1340 7805583599668556 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec +1342 1477 7805583607315372 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +1342 1477 7805583607315372 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +1478 1699 7805583610765846 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a +357 4526 7805583597466120 esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj 936e9c9799da1186 +4844 26941 7805583862624795 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +26941 27399 7805583863309982 CMakeFiles/SIM_S3_1.elf.dir/project_elf_src_esp32s3.c.obj a04cdf257c4af900 +30118 30552 7805583899333704 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a 766 7959 7805000757181522 CMakeFiles/flash 9629bf95c72f7b8b 766 7959 7805000757181522 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b +2156 3087 7805582582199164 esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/sine_generator.c.obj 78257f6e73969c46 +3087 3314 7805582591532913 esp-idf/signal_generators/libsignal_generators.a 25ac18d151774b15 +114 17309 7805584540700684 build.ninja dff3862ec6410c11 +356 667 7805584545745700 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +356 667 7805584545745700 bootloader/bootloader.elf d3b44b7f4bdbe5ec +356 667 7805584545745700 bootloader/bootloader.bin d3b44b7f4bdbe5ec +356 667 7805584545745700 bootloader/bootloader.map d3b44b7f4bdbe5ec +356 667 7805584545745700 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +356 667 7805584545745700 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec +356 667 7805584545745700 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec +356 667 7805584545745700 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec +669 756 7805584548870573 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +669 756 7805584548870573 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +756 918 7805584551269884 CMakeFiles/bootloader-complete 99c64e466faf136a +756 918 7805584551269884 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +756 918 7805584551269884 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a +756 918 7805584551269884 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +262 3384 7805584544800249 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj f6f2a4d62145fe5e +3384 3664 7805584576023207 esp-idf/main/libmain.a 1441f973ef462995 +3664 24692 7805584788386309 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +3664 24692 7805584788386309 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +24692 27370 7805584789111533 SIM_S3_1.elf f7f6e69ce139eee0 +27370 27786 7805584819953704 .bin_timestamp 697fc0034cccc03a +27370 27786 7805584819953704 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a +27786 27900 7805584820048974 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +27786 27900 7805584820048974 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +244 467 7805585243598064 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj f6f2a4d62145fe5e +335 561 7805585244494494 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +335 561 7805585244494494 bootloader/bootloader.elf d3b44b7f4bdbe5ec +335 561 7805585244494494 bootloader/bootloader.bin d3b44b7f4bdbe5ec +335 561 7805585244494494 bootloader/bootloader.map d3b44b7f4bdbe5ec +335 561 7805585244494494 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +335 561 7805585244494494 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec +335 561 7805585244494494 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec +335 561 7805585244494494 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec +562 631 7805585246797584 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +562 631 7805585246797584 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +468 753 7805585245804369 esp-idf/main/libmain.a 1441f973ef462995 +631 838 7805585249071232 CMakeFiles/bootloader-complete 99c64e466faf136a +631 838 7805585249071232 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +631 838 7805585249071232 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a +631 838 7805585249071232 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +753 22497 7805585465463506 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +753 22497 7805585465463506 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +22497 25179 7805585466139652 SIM_S3_1.elf f7f6e69ce139eee0 +25180 25593 7805585496995284 .bin_timestamp 697fc0034cccc03a +25180 25593 7805585496995284 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a +25594 25712 7805585497097103 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +25594 25712 7805585497097103 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +25713 32777 7805585498266797 CMakeFiles/flash 9629bf95c72f7b8b +25713 32777 7805585498266797 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b +357 627 7805587207714071 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +357 627 7805587207714071 bootloader/bootloader.elf d3b44b7f4bdbe5ec +357 627 7805587207714071 bootloader/bootloader.bin d3b44b7f4bdbe5ec +357 627 7805587207714071 bootloader/bootloader.map d3b44b7f4bdbe5ec +357 627 7805587207714071 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +357 627 7805587207714071 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec +357 627 7805587207714071 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec +357 627 7805587207714071 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec +629 708 7805587210435640 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +629 708 7805587210435640 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +708 838 7805587212440090 CMakeFiles/bootloader-complete 99c64e466faf136a +708 838 7805587212440090 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +708 838 7805587212440090 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a +708 838 7805587212440090 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +265 3580 7805587206795415 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj f6f2a4d62145fe5e +3581 4004 7805587239923646 esp-idf/main/libmain.a 1441f973ef462995 +4004 25291 7805587456596782 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +4004 25291 7805587456596782 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +25291 27854 7805587457056881 SIM_S3_1.elf f7f6e69ce139eee0 +27854 28276 7805587486800489 .bin_timestamp 697fc0034cccc03a +27854 28276 7805587486800489 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a +28277 28394 7805587486920245 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +28277 28394 7805587486920245 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +344 618 7805588049231766 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +344 618 7805588049231766 bootloader/bootloader.elf d3b44b7f4bdbe5ec +344 618 7805588049231766 bootloader/bootloader.bin d3b44b7f4bdbe5ec +344 618 7805588049231766 bootloader/bootloader.map d3b44b7f4bdbe5ec +344 618 7805588049231766 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +344 618 7805588049231766 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec +344 618 7805588049231766 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec +344 618 7805588049231766 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec +619 699 7805588051987851 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +619 699 7805588051987851 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +699 831 7805588054018781 CMakeFiles/bootloader-complete 99c64e466faf136a +699 831 7805588054018781 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +699 831 7805588054018781 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a +699 831 7805588054018781 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +253 3361 7805588048321618 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj f6f2a4d62145fe5e +3362 3636 7805588079394090 esp-idf/main/libmain.a 1441f973ef462995 +3636 24288 7805588288168945 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +3636 24288 7805588288168945 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +24288 26843 7805588288681872 SIM_S3_1.elf f7f6e69ce139eee0 +26844 27241 7805588318133057 .bin_timestamp 697fc0034cccc03a +26844 27241 7805588318133057 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a +27242 27356 7805588318213732 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +27242 27356 7805588318213732 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +251 486 7805588577607691 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj f6f2a4d62145fe5e +344 587 7805588578538085 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +344 587 7805588578538085 bootloader/bootloader.elf d3b44b7f4bdbe5ec +344 587 7805588578538085 bootloader/bootloader.bin d3b44b7f4bdbe5ec +344 587 7805588578538085 bootloader/bootloader.map d3b44b7f4bdbe5ec +344 587 7805588578538085 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +344 587 7805588578538085 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec +344 587 7805588578538085 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec +344 587 7805588578538085 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec +588 666 7805588580976561 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +588 666 7805588580976561 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +487 779 7805588579962203 esp-idf/main/libmain.a 1441f973ef462995 +666 816 7805588583169674 CMakeFiles/bootloader-complete 99c64e466faf136a +666 816 7805588583169674 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +666 816 7805588583169674 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a +666 816 7805588583169674 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +779 21989 7805588794510431 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +779 21989 7805588794510431 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +21989 24547 7805588794990539 SIM_S3_1.elf f7f6e69ce139eee0 +24548 24988 7805588824878808 .bin_timestamp 697fc0034cccc03a +24548 24988 7805588824878808 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a +24988 25117 7805588824984455 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +24988 25117 7805588824984455 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +25117 32390 7805588826276053 CMakeFiles/flash 9629bf95c72f7b8b +25117 32390 7805588826276053 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b +343 728 7805693281376526 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +343 728 7805693281376526 bootloader/bootloader.elf d3b44b7f4bdbe5ec +343 728 7805693281376526 bootloader/bootloader.bin d3b44b7f4bdbe5ec +343 728 7805693281376526 bootloader/bootloader.map d3b44b7f4bdbe5ec +343 728 7805693281376526 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +343 728 7805693281376526 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec +343 728 7805693281376526 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec +343 728 7805693281376526 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec +730 804 7805693285267275 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +730 804 7805693285267275 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +804 934 7805693287203112 CMakeFiles/bootloader-complete 99c64e466faf136a +804 934 7805693287203112 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +804 934 7805693287203112 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a +804 934 7805693287203112 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +252 3271 7805693280476385 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj f6f2a4d62145fe5e +3272 3635 7805693310688126 esp-idf/main/libmain.a 1441f973ef462995 +3635 25676 7805693534138345 esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +3635 25676 7805693534138345 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld 4422e6694cb3405c +25677 28202 7805693534740768 SIM_S3_1.elf f7f6e69ce139eee0 +28203 28613 7805693563980496 .bin_timestamp 697fc0034cccc03a +28203 28613 7805693563980496 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp 697fc0034cccc03a +28613 28727 7805693564113187 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +28613 28727 7805693564113187 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +306 428 7805693697912890 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +306 428 7805693697912890 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +291 513 7805693697757763 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +291 513 7805693697757763 bootloader/bootloader.elf d3b44b7f4bdbe5ec +291 513 7805693697757763 bootloader/bootloader.bin d3b44b7f4bdbe5ec +291 513 7805693697757763 bootloader/bootloader.map d3b44b7f4bdbe5ec +291 513 7805693697757763 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +291 513 7805693697757763 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec +291 513 7805693697757763 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec +291 513 7805693697757763 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec +514 570 7805693699983753 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +514 570 7805693699983753 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +570 698 7805693701737683 CMakeFiles/bootloader-complete 99c64e466faf136a +570 698 7805693701737683 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +570 698 7805693701737683 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a +570 698 7805693701737683 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +699 7962 7805693701839499 CMakeFiles/flash 9629bf95c72f7b8b +699 7962 7805693701839499 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b +268 381 7805695433415813 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +268 381 7805695433415813 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +252 508 7805695433247755 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +252 508 7805695433247755 bootloader/bootloader.elf d3b44b7f4bdbe5ec +252 508 7805695433247755 bootloader/bootloader.bin d3b44b7f4bdbe5ec +252 508 7805695433247755 bootloader/bootloader.map d3b44b7f4bdbe5ec +252 508 7805695433247755 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +252 508 7805695433247755 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec +252 508 7805695433247755 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec +252 508 7805695433247755 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec +509 569 7805695435810399 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +509 569 7805695435810399 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +569 696 7805695437615845 CMakeFiles/bootloader-complete 99c64e466faf136a +569 696 7805695437615845 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +569 696 7805695437615845 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a +569 696 7805695437615845 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +257 369 7805695760356840 esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +257 369 7805695760356840 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1f8cb3bdc6b0beb2 +241 456 7805695760196801 bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +241 456 7805695760196801 bootloader/bootloader.elf d3b44b7f4bdbe5ec +241 456 7805695760196801 bootloader/bootloader.bin d3b44b7f4bdbe5ec +241 456 7805695760196801 bootloader/bootloader.map d3b44b7f4bdbe5ec +241 456 7805695760196801 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-build d3b44b7f4bdbe5ec +241 456 7805695760196801 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.elf d3b44b7f4bdbe5ec +241 456 7805695760196801 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin d3b44b7f4bdbe5ec +241 456 7805695760196801 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.map d3b44b7f4bdbe5ec +456 514 7805695762347377 bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +456 514 7805695762347377 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 1e30adf47d2fb111 +514 637 7805695764062909 CMakeFiles/bootloader-complete 99c64e466faf136a +514 637 7805695764062909 bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +514 637 7805695764062909 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/bootloader-complete 99c64e466faf136a +514 637 7805695764062909 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 99c64e466faf136a +638 7857 7805695764163452 CMakeFiles/flash 9629bf95c72f7b8b +638 7857 7805695764163452 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/flash 9629bf95c72f7b8b diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt index aeec88a..2f57eb4 100644 --- a/build/CMakeCache.txt +++ b/build/CMakeCache.txt @@ -548,7 +548,7 @@ 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=127 +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=128 //ADVANCED property for variable: CMAKE_OBJCOPY CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_OBJDUMP diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt index e049d71..4984f0e 100644 --- a/build/CMakeFiles/TargetDirectories.txt +++ b/build/CMakeFiles/TargetDirectories.txt @@ -869,6 +869,13 @@ C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/wifi_provisioning/CMakeFi C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/wifi_provisioning/CMakeFiles/install.dir C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/wifi_provisioning/CMakeFiles/install/local.dir C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/wifi_provisioning/CMakeFiles/install/strip.dir +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators/CMakeFiles/edit_cache.dir +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators/CMakeFiles/rebuild_cache.dir +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators/CMakeFiles/list_install_components.dir +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators/CMakeFiles/install.dir +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators/CMakeFiles/install/local.dir +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators/CMakeFiles/install/strip.dir C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/espressif__esp_lcd_touch/CMakeFiles/__idf_espressif__esp_lcd_touch.dir C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/espressif__esp_lcd_touch/CMakeFiles/edit_cache.dir C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/espressif__esp_lcd_touch/CMakeFiles/rebuild_cache.dir diff --git a/build/CMakeFiles/git-data/HEAD b/build/CMakeFiles/git-data/HEAD index 0ddb352..cb089cd 100644 --- a/build/CMakeFiles/git-data/HEAD +++ b/build/CMakeFiles/git-data/HEAD @@ -1 +1 @@ -8c750b088c7cd857d079c0eeb495da199b359461 +ref: refs/heads/master diff --git a/build/CMakeFiles/git-data/grabRef.cmake b/build/CMakeFiles/git-data/grabRef.cmake index 6290803..99deb12 100644 --- a/build/CMakeFiles/git-data/grabRef.cmake +++ b/build/CMakeFiles/git-data/grabRef.cmake @@ -18,7 +18,7 @@ set(HEAD_HASH) file(READ "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) -set(GIT_DIR "C:/Espressif/frameworks/esp-idf-v5.5/.git") +set(GIT_DIR "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/.git") # handle git-worktree if(EXISTS "${GIT_DIR}/commondir") file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024) diff --git a/build/CMakeFiles/git-data/head-ref b/build/CMakeFiles/git-data/head-ref index 0ddb352..99e6512 100644 --- a/build/CMakeFiles/git-data/head-ref +++ b/build/CMakeFiles/git-data/head-ref @@ -1 +1 @@ -8c750b088c7cd857d079c0eeb495da199b359461 +1f3f204b0ecebdd860e0b512a4f1512f37b33806 diff --git a/build/CMakeFiles/rules.ninja b/build/CMakeFiles/rules.ninja index 3c93cc7..ac6c7b8 100644 --- a/build/CMakeFiles/rules.ninja +++ b/build/CMakeFiles/rules.ninja @@ -1902,6 +1902,25 @@ rule C_STATIC_LIBRARY_LINKER____idf_wifi_provisioning_ restat = $RESTAT +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_signal_generators_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ccache ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_signal_generators_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + ############################################# # Rule for compiling C files. diff --git a/build/SIM_S3_1.bin b/build/SIM_S3_1.bin index dc5e4daa1c4353a832f753a5f02e01f338896ad3..6007298e6a043663320448f03da49bbbf0cf6112 100644 GIT binary patch delta 68600 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�(1UPN%jxks(F!j2lBkP0Trjl;-t1AV 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 J(yrnVPo>FN0WWs1$10%pMH}q+&!n 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 JdE4gA`Zp&MhRgr} diff --git a/build/SIM_S3_1.elf b/build/SIM_S3_1.elf index 36330283a6e60c7fb01c7061a322dab7b3d055d8..dd9c4cc7ddc173b857bc3b5610613cdb0e7a9395 100644 GIT binary patch delta 724916 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 Xs@7H>=Gn-I@0S@Lslqrv|3Cjfs#tA( delta 689325 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

J50FI9M=kP3&O<^&Yaf=0`5<^j|n%P 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
hZ|D2nJ~V^cDJ8N{lFxx)?c4^u z5n0lZL#pOQtd%t4fJ0C^!LTI-GKpXzo?&uHiLGf7nA6jck|uoq$1xnlOi3vRL~Sxc zr=*Mn2>D-O=8~qeiaKFRNqftk$k-o*CrdiqdX&=q2x6$DW8Je9?0A$kvt6flis9#y z<_UP33ZOZr`jQszkZ@Q|ThI+a%Lsa|8LT}whh2MJcg0RY7?xCXq*HqtkxFaep39y(uO~Zc;Ub2KkyP0%%1LA2oX0*LJ_}}h11GR8b6L(C`UvTnO^m&v zm&QMX8YO#Gs<6HoZx7N1vGHGsk^jR1_U#*ZxR=I4-_)~23u}yj1A<_evZ1ntv{3bFKpg3u_3?RpE_{p*&o*WS`A<3GZXps(eWSBR1>FvhtskhWjO za^J>_36IvWc5mz5q{`)N-P?G4a^E_3`fWX39L2tQ8>~j3VG$P~c;Y&ieL;^Y?u8LY zJSSSgi2vc(PE&kl|L% zw?#RMugk)3U{u@?Lz{S10!flNRu)-f)KPn%*C0a0+BUB0OAb9KRxCvK{*#3}H~ zS;)3r(g#WB_AvDwJvxO49}|lxmO7wz8>A}wS%McT>Y_1|wS7lVw@yXTF7cl5R0 z8)H2t-Y0Uan>K>j{49K6m&T8M)AF{rS{H5!x;yrz}Si|0X4`GdOkG!XMk=RPs z?y{a@y#b1EuCu!@< zdc_PnF)lA$?rY9}$g)y|dts=FEb)D4JszA!-(a2I*GF0BBR}^BJN~}zvu;Fw!wuHr zivFi2llAF1g#TiCr<_4s(ue+vH%fxuuwN8QSU13Y53vMZnI z(d^}`x}y!9G!>^<%eLT9BR4OZp*_81B~D4Ahv#C~mi-?kntbf^2~E*R2~w-$7+u8& z_&w)PzyrT$X`kuY&c(5W^Tn_PIL36ZFeh_@PfzNJcy}r%v&__`Jz;w@w}qVvz9+wA0EUdEZPC+08jLrJ_=jp>=J8IDr2=EzR$)vM9Y z*et-CV7G@rOa6iP`A-Ly7H?)Re5uFT=!CTxY<*)B`wpPEiG^R&<8&N1AZ!0*)&gUp z^tVl{>YAR>BJkR~;DHc|u=if<_=t&@g9Xq2;>r#3sYB)~?*$X!<>{C{Ky#YY?E4^C z*ngn7vQg+^mj1h*8TU0uW8N3k*AJVuTo{+>Z{>$<{O|fQDe6dV(0}ztqS%I&{-KYO zMjU3F{?IGz-9axFM`7s0YrBWp%|EbfJ>~FHw-F;9JG`{mD37mBl>DCqdJpTWsBwb$ za0Uh8Wmx;w@0Tty(tTZjkcEy&G2_SJCq^HMF9o;BfF~fuc0zde0}poBfX}qMyj`Cxb09Kw65jO?MC1A7&iT;9=m%!dQ-3;eV?y=s7yp)~Dnu>-iW*bO0 zA-RT3xC@18ysvZ<5;h%X<3(ds`Wq;F-DH#a@t($&-=lI8|CI0`e2oVFoCN;Hyu%Ei z2TM%70m`ey?G6DSMe7Axv74!3M<+quew2kyKeB4cXl=a{`H4TWrIJzQsGdfSEc!fH zsBDR6(?{5+l93QUj$^rxUN~anpbyO$Ni{Lt>RR)c?N_e=VZ5AA9}hWVl0*1^Vg{!7oL zsL@JntaWc?WHT z?BuIOB^&Z(XxC=$b1+`q8eGM= zUARhd=bxeL3FPItu}{->sO&g}h8~jN0BhB$EwODrt z;1pyWxo|m*xU^ScFd?oZ%EY+0PLi5$K}0$381hP-7m8a1SwB(R*I`WOr&%s*MsxZg zOmd|8e?+7)i{R^ixUtj3Pjhm7tyMSjC9O63MAUqPETf3Jkbs|sYZGO-f~2QUu_5us zW#Z60!Pt>M5}J$gPC6oi*PhaC3Anj++<{J=;W!Qx3t{}LbD5zp5GR~*ILQ({#vtF2 zqo`IWXMtMvh>dNZA`^D{IFQBBlo!HUod!^%-3c=)Vbw(5ggZ(Nlc=QBxJE67^@iSJ zS=2tXtHsqT%Lz~`g6ynWI?QqrDBV`{MfmQ^r=*_ zMbvc^;|wn_8Tb;kH_`C8Hp9|!C02@tK6ote;x5d3@FeS-Xv9i2&$4?#)w&CO5HE?L z-{Po2PIt%`|2xlTl%w7F>pXv!s&B>|CuBTG6d!Z!aE!bsbgPTLLS z8Jx2-F$2uj8%y*HdSey*SMW10gV?KH%tVu(W7oV!blR)WLZ?zCyBtn<5G~z>lwXPg z1IQ}!^fe$p{fT9#7zsXZfM$wDx~Be&wI)&%eoN9)iJ{?y)-ENtQ4F_Lbm|bLpeRA2 zyM6vQGa1Ms<8X+zr^5SIHsgqo8Ah}ObEah&$+sx#H{CzOXw|m`VrT)dVohyYAcj7X zc{|0w$U+_x50}NM6fP$yT+WOUgeOr=q6@{m__=I}LG6M!Q8EKH9zZJEeT-ENH==!w zKEDH>5F>iJL=pWLvZWKz|A>-9pshtJkYTSkk$DYCD0~346j0@>kvW6RdQ|vVK}9l} zL3LHe|B*bZaImxJRd8AhPT&&6hmd3iPj)VKLkGDe^RBo5X?*dP1gv>0Jz$JWayl7Z z`4u|`kc=DSQQMBAJ9Jnip3KNUAX@5%a(CqQILR= znV@|bsUQo$dSq53358!n6s~_5Dv|ytP~l(cPhy$+zf1au*6Ckox#bIi}%`~C@e@z zzVh3E+td)RN!7y*2CgCx+lcjWBY^YWiJPNl^^kY^32&>1yVuWfR6X1b;HcpT>fvSs zNBkDu!WAwBj;vU;9U0R3&wh6B(X$tH2@D#~7PMCbIKpy-eE8xKz(}O?4H(w%E z&_YJ6kz3MAM(oC8_aiinA6%_->64~Q`~NNreUS<~23$JU@6y%a{%3)>JidB^4M~RK zoS2$ET~ptu<@bZr%p82(#N@;s@F;No8VJI3^>7P-BV8`u!WFFoZbx>V}eLkp2HJ>>fr^BXm28ie@`vK(`uAXGM|X>FdYkq-O8($rxB zY-H*%Pi{;)g#8yE4?^NPOh>6j9!fgA2H||p9Z-TUT#1FUB@qM#@1v*(s&qpt_!7WG zWX2+4NC_wrhDv`8vwxVQsX|xpR8aNl^qU1i*xEHCQ6aYhJF_KXDLqIbfmCiuLzv*{> z>UKWf@2EjjvxokqS>;|*;x1E(&N~AWJ&kdu5_g&2IgQ4TA=UGaKswMwzX#PMx`dJe z?v*VYU;;kTYq(p$;{!z~I=a(8)3<>(N2vl`xYAQ)%iC0;CrVm_wk1-*5CB7v8Gs}d z&IT>HvwRCOq;v-4`~NA<^(G-ry{C}gzQ80>^e#C4Wu~uOLN_9#Ol#z!3z*BE{uqo+ zYmAZ$C{`Cis@X`~8skukAJ7U|V#Y^ZjHxwFl>A|3+q;me{ww6pTsit zA5-7&MMrn=iQY%T^Pn~a3#nN-m2OH0m=?GK8<`eZgn7`kzyP@sS)e~8xebY1U;|1m z@@IjyPSq|bL>F#>A+qIrFyln_;MI$pqJe zS5WdkYP^S3@D6}qk@*oxD2xFuH$w?BXTWS4D*UUUAW2Q53?if4TKR3yCnGl(>_9SBO>L-5{EP zRFoa)3oD>cHj&VUtKA#(3|JIwLdiDJZb2&82jC1cr;vogUjp8bMkP{vH!A!qwMi^f z?c4sWcKe;C+Rqmmaf!2z;BzYitr@L6Rjpc?mfGg%SJkcxgd!o$5s;YpBjmwkW?$$kv9|4Mdh&Xm1f{WvaHj7ux}e1x`*EyHJ9TykceF?_ziD!IcpYy-6}R8XDK)tSoqsveC3T$HIwO? zF0a&BP9rDZ4>j&WGOIS03;k7R9%pllji?5~v;MKLA6bJg+#02_(7)&6(CH`I9y7J;EwWjCkpxBjnHw>4~H4@e(6379XGzenZ>& zGiha%FC*U2)q!lHurna=+>88ONCjWw4r2o{H3a+w;36__D=fH)ksNjd`LB?0OSJP@ zR@}sBY|Xb|RI;!M9gJkQyor%6?LEd$Qo$$`4CMv!EUwfjlHA8xk5Z$N^$8TL_7`j~ zH4>~BfOrdsV@q*Qzu*-6iimyy?pr@mi!u;pSrs9}N<`5O^5|nh;!TO)k3kszC)T`= zja}1eHzmHo(G7K)TiNb1Bi{NR@^4#NUb&&O&&v$eY7bKIwOA57o<%n`67U;?icp1A z;2D805g~JX5Np@8{*7_H(Um>a)aWP8Jk366YD8;1Qm#nJ6e-J4^N}E?mZMQmup-0+ zQ=^I2F37hFHru<#0;c@YP7cjnKi*|Q~5u&ce&h{l+)=&=>5X~)cbPNfZi`i zc_hM{V0JE;-CtqkSj%j1vW@MofC#rC-`PeY!4YE0xT?yq z-`bX_Z~dpM%#Di+RsSSVcr#;2&T{O*iR=HTK+dXwKAoQZVtEQg(^ZeQo*Q^SVbe#EtEBBZlqbqAU`6M4R8KWBCTm| z3Vo=#F+tjWgk`nB<`oZ}ha|q4@&q_6M#`s6WAP!WIqepPs@QN<+2|ICr+&zHQMt9W zMfgHA6yZb5KHzt#W^BFD!btFZ0mP?B1@yBkp<#+(Ln?3qNJ1t)j77FIk|H}G--Zen zL6vdHjKQbmso-JcAEW}>Z&`s13uE`UG?M>az|6Q6Ft4;Ue2H~Y#$(Fd)57qD5A96? zCa?TCHoleNwLXP*wuiA5tq>N8c14J@vlm+#+19qmSKCdcM@yC#E&NIk0luHzRJwU< zqpfv05X9)I0u$9$DgPuFk+%_bP z@7Rt`z{RdSgbmoLbF{PFLb4K`{=}N2tpuUOpxy6Q65sKD7WGabm8_=KcWa67d|w6P zBRflIgRZKED}puLRBmV+qn9-DBs7X-Md;&T{n|ms$C01uFqPWV4o|;M0C5bd;81@-cpI7XNSFf!VXy~l!v$$Z z3=3}mPs(JrH_HFs(bL+SJ&m=Ly&i;3_hoXsmfB%+Sq`v9X#0tS@EH0rw1(EfM^%VzC;s| zbC92nRN#XQ>ycR-$r3taggJ=(ek$mLf|rmv7ssXSL{J% z8v%G+AzVi0T_`lQAU|j?KbibHQP5&26uRGc3u4sCgt_VYr zc+(Ffb3Xyp^loH!>g-6@f7|rITTO>`GYT7%fj#2x@*4dbglx1FZ|3wdk-r1+GZKHyv=hs4fi74$ z(67maz1Ri4fF3g?L}6M$;>K%=Ok)Dbc%z~epD+TDPkfD1Fx$EDqs@L7x zETtXbL^QYu)KMlif6*u%xI*Bv>fss!7koS3xT}XN2kwjy$Zme*WNcNm0rK9S_~pEM zxURqz_rl&zJzPKF)ZT(HzaH)m;C=<}iF&vRz`Z*}5Nhk;rUJKfFdp{+hkYLUg z1IX!vaNAsua2{}72MWTCdbp*)oyNc$grEr2T?brzKWt0g!WC@;?vcKAG??a+!qD$d z(CE<63^x^~?!R83j@P$)pyM?Z`Ko3%yz&5&xzXHEtf;rqY(6nc$K8zi?4VTS&knu= z`8P;~tpdIrc8IOJ&2aka=H_~lI!6X14n*n?8n_sgf&2tW82*#EZPJdIo8ii$ZJG%h~2c#Z?%EvC@pRa z7{_iJC((rw4vC(l%){RqM=`p#9_|EiK8ogj z^^h<43D4BSz2;~5PCeYaz){2B)WdxU9PyK3b-!Z@zXFa%hav?YBP*hyo(0i~@D#e< zbCkeBmF&lV8@EID8F==Fg(k(opIGw*n&`-<#v2JVe)|UylncVPJtim6u6v9e)qT)!G*--55mY{ktdM+k3h0bsKqZ_ z{tql$P`6+S3Pz#A9Y_W1Mxp;LMs6+=91u`o1v3BI0o0x;|CRdk^G6sY5#Q|%7c3-t zhwHR3c#A7F=YY^`AKHgoXvj0&@)jS$&qJIuNL(v(%$`nK6+!rGs3y_HK~*nW?nm8% z7AR;ErwGMJ1)TwON2V*1(0L~ynJlrJV)Bw@2hkq^awLj}`>4WcKo21^jVctL25;`h zPmuZ7Rv`IID_k(G;19zmIzr)>xxz>H3(a2U`qK1Z>g#)%?+6@4%lnbI!rm%!;}TN% zJS0no82myvD&lLFF@2!G6%;7(7^#s8z621BOcavPWj^kqZ>KtR$)Y;1TMknl`q|Pv zkYrPxEdaX3V-eGdpo4&>Av2YLQ}qBm|AExp9Qyyo93;JIj#ujkMTgw(Fvl4)sKI!e z>3^CUO?#Z-FE*@%7z>cNIm{OuHj_Dif}-nCO`?m7RD0fXFX|Rpuz0_L3g40Z4ge7e ziV%u~pbp5t0-3+K)AvuW0a1IV0_W;0(DiFtTAtt!NuR}Q;nTQ3X|-a?e}Zp_bwSH* zkm|*+ljM(sWL`W^ljy?b_nop7qjEteN>-o-LnakSB%$!XXofo=4we3*z(2`P z?V0kQtS^6uZ|TjuL)-x`?!){ynJYj`FjIj;+yOtLd5+YRr*M1|Fly(45FOUjc(;>FmIujJaKUP@UNi;U$@j%udK9545*KU+ zdIX;ElV$0#;C$4Q=n_g*_gGd#Hojf85EULrDq6XZo(shI4uN_D2t~SBiF%*+J5V?K z$X_4_3S_(xT>Y&dYYAYL88|XFRuE2u>9a`q>q3$q0y}0`}AjsF{kL_cXgA8Y*|7HD2dYcyAUC*LL2icw?!|Cky zDBUh?j;5#iGOfD1PrS-@4Z@1=E*gTDb2}@0g=X0zM6IEvjA`fPd<1qR;$r|v9r@Pa za=tToAK<%?>P7X(0oyMECy6fH_Ny(u2l#D&02Ov26|F|$15k~gz&U+45#k$x;g*vnOmwKGSn-+MD2eSi6rwd({L;6 z8Ln__fa4rL$1>RDUvo4Wt}+>VajS>NZrl@hbg)sEo5>A6VoxBjX)$UVd?xR4&7oBZ zQoSDcQ^2^dpq5A%9#*q$uR$;#*y~VXB~sBldw5`1q`-RbfKZ}KG@12rn*}WuG(^Fh zpgfOM&=kN8WWGWY3O9h1Tk@Gb%rW$Tzvm&5OidrHXS#BdjqYVfp($95V!7yd;MM{M z_|}_k9eUvfXmOG`{Ok_cg4WEYEheFpH^Yg(WIW_Ss@Kca=ls3A5%`L9;l`L^`-9Y@ zm;8LFa4%9(g=q{Q|G{t&N)@UGUB!w1l(V3Gm!?s0o*phu+1|9bxgXEF>Nz| zFZe_+9!En|ZW?pJ=Lwi*JZgz_;ifT$+Hz2t+onHi^+GDTZ?`!Dj)&Iwfl{JN6}2?X zHi)RFpWF=CsL( z+vYjo{%V^Fx=CrzZ8HH+-3+(l3g1P_ZzeL5eg15fzEjd+)t>6%?c+O7VZs>@M)@ zXP#$n=Dc&}%$YN1W@l$-XMe@Yo3vg7l~{a*G?q>3u0*)(xM)aUNq#bI^J>}sEh6&X z4#Bf5Uh-E`Jt|pf5e6TY=7EoPQE|R`QniHc}mp?^hDo z2z<2lmh&}|vR?8v(%MdFahTewCirp4Dr3}fB>`s4TS(|25 zMgsD-_1?i+_f$ec>yrJ#q}M1*yMd+M1SvvFsYW-1E$(h%(|albe22P(uL{ox*eZ-l z7p1neu-+y&BvFGeMAB3v zX`#qHNT@$&GkdR>5}n6o%@DcErNEgJ5NZT=5(R07*p;4Qqibx%BU@>vw*K4%>5UMC z`eW9!TacjHW}GHrFjD#1WnEb0H+Xy7H6s341#y4M zb+Ni8^t+AhKyM|$!Oc)ptU+k2q3l6#B~HR*Ftm>nnAnsWH3kLKf(Mrsqghew*D<2r zZMtt|o%$#NIb2qNCQE3sjM~7C+;o%8bKAv?m({b2`COCs{Wh|deH4XC-PK2l<`1Ez zTUy=QU&G3!wAW9jo1+fY&-PX(5j0=*>8nJ0@gg^B^>3fBj@1GveYk`5p#RHvu=n~Z zm8Bb-*!I3k#n>w}u9W!6G!f#$N_ZcGFv7Wz=D%-cLH!IZT4}wh{X}Z127WSK77rjI8-to8WMqt82-)DPV7uLsLlh?|d z^jDhkPl7KRpj32|hOA>J2P;kE_&Zt_{*IRA1R2)C-_f#cK-|p|gKp(6xchHn#Y50( z`FDdX{5?7ge~-?>-=nke_vkGAJvxi_9-aGL=;3HBCz-JFZssq`IYv0X0A=B?z*+b! za2EawoQ1yvXW_5FS+rN+-02lK$2)R=WU%IVMOgcq@d8!(FGG|lUI)*i%0)@4yPw@0 zt`s)?6R*a3mnfg0qHgZNg2!{ByXdqcc*uJ}m+G`r@URfwRi|x&hn?tdI&Bs_8tq|k zk5HO5bz!H6cYh5ReSpKN-UD&^@)z7{654tL#I*x zc`A?TG|C@O^h}*b`A;bSERCk}+wEo%qf!1a@`w%XHdkkL5aTw8vK(t+fZ_uh7$N0xNJS=0@1Vg2uoIjmTJ=bv_v3I2mP& zPQwTncCxl(&`QT}l%|DZ-w`LFL~e^dE4 zDc=#D59ObrdL7kilz(|ItMRtd%(a=yKd0j;e=YHy*J+f$pX6N7X_Wt*%D<@7DE}8K z|B^;i`5%(KF6-&&Y|1M1{S^&E>AM0f3B55_8QyHcq}EzGSvungwizeivC z)V2p^+3{Ylk#4=s^f{U_UYXQO#+ZYU@~+ol5<1=73y%OddHIt@^UcK$Ji_pLozz%u zP6XR7uYJU}(_G&hcXM7U2{>i0=oExwUXeuHF#GukDZ(kQiInM%xs8t?ob$Rxnf@?; z4&qYS5mF8xl#_k2s2}FDw>)y3Qsm~fi;8THQ;JbcRGYo!LnkRdo|4~|@~IyypNP^9 z)P07M?cW1zK9xmN^;o>;mq8a2Qewj~mJ0C$_OjVC@D?pz z&b%^1sh;vNZ633Uo}c4tVf=|@Qal|}@(WK&o$ikJE#t6ZEsix}N+(li#5=~Z@0gP9 zcL-|^>GUw^6p!FdzC)eabEXuf(VL;-^MA;VNWeV`m-{@0#J&en?;zyh>NsSkGWvhZ zv&>T3CxxP|#M}RnHzd)JcRP;cJ%OzIaqRtBN~ozY9ve~O*|)Ql7N*vSw~S}@Pyb8h z)}Jb!r6wELx=)p^Qu7@w<}>`SzKKo!46oL6g^$Ej0dGQ3FN9QjarCWZCVr^|v(uj` zRZMGv{us{!%l@l~E@etx>Fpitt1?66Zm#nQWISMq9G|F({HqKi!xG$tkOWp`_J4^S zH(N--kPTrr&L9+6UY8T)cABm)Yt?PH2|V|Ah5rdC{awAuN439 zdJad5G-nUnH(v=*xPgXcQT~m{TaJ*^;2`^JzB1~6=brL~(k^WsW>feW>i_R*d~Z0H z*N=AzdlH_NBal30!GFnHya3JBU?01^z-X@0Owy(VIh!T1fQ3r4|E-8?p_1`3g?fBC z?Nvmt-SM9(_C+{{!FxArzsM-84KM5u6!uFJ8@K4coGN(ne-+mGKU2P3jGD#oWOo-E zg*D?nZ)~!gFd~@+Em10(_9DJJ86Qdeua5EQ5*!H8Z718jL<#Wc#;wO2`)6dlfRHnk z{k}x$?wgi^2U7?cJF4TM9U_fWSdTCNOX{jGm2?-qpDyO|M(ngnC};xFmV)#?s7g>U8=Ojz14K&lIRCFaySmaJsQbrU64>|Ho(ysuhX$GZ~Ys~ zKivVO07D_ne&nHc~!jD z^HN&oVqiy6_k|pz!*4Q|1EQO0x+(O3&nw*OLdypn%Rb7kymqDie0F%KU z$=TbJc{qCzcawCmCn5-W@9bmKmSeMh_5JM2<#;<_B+#Jw+gEbS{Lzv3{=O(cu>%3?=f+`p$3H-!L;m`)emy%4YyLC8A}eA;7lM$VwTC?vxLTaY$V-YKG&p!gxn+Uo5KL2|M z-OOwNy@t5*|HK$C&3i?U_t9qAT#tEKq{bz%okPgx+2_@#?4D_OEe)XnasH<*7cB6h z#2h4~BM3sFgu$C_Spid}?P3>JD5^r+Eu=SV5TB6m@f~Vg*YAgo%=2p{p@|zz9}I8R z{1L8-!?%R|@4p38RlhMf^B@PA#4_@9O~I;Zq+nl^)e|9`-b#_G)*x&a=ugtvxUZF{ zucnqei@<}w^nq4(d8oBzy{<@*eiBXYweV11beh&d6$==|GSe1BhjH$Q zSfp?hX1x@5^n`xmOg)}1M7?Qco9laovA!M-E1R-X`73z!1qtT*5R9VWz6@^)TjS&` zOo-gKUt)8=QNEBSe#L5ktMrxn1hMbGRrNp2BH~S!B3-IeI(@`p4UIP*6=ncYVr>|^z25~lTduTlJggXu)kDuKh4I+X| zQ|yOvfTL$5vEds4g2inwSS)U&gL}jCkPs!qK7xmKx9wTgu@%BSW6o05D&vqX(R1M$ z*w1qZ5ZUwmCEVY89>0wHd(Txsygi>mbEjwg0ZbbO_h+Xdu#P+$BK+Ju8@SW19sk&se33e47 zl7!Zt6D%%tV>_Lu41#!VXCLQ(rzpeGth`0Co5}#Y#;=BeT*}jAH*~Qt??9J0a9OZ18_MeWRpp)Kzf-T3ML2PH8 zQCOkKvp1rGE^|%u?OXo_+t1FLNU3EPe**EFEs82pWN(S@x_RE=d=2fRN%lid6x(A? zuvOnyZAUaq03WUX;g9f&hc)G*OZT1Synf(VPpxzEM@^<6x z7U2KnQxM%b;U*5PtTB3i1>>i$Mg~d&Ph#a`prfVza>U8-`i-rf{%V`lhjnAHDUS(a^D}^ojSlO`&=Y(F|J6ii>a-J|T0Ove5uZQCH%GRP+fni6s926pqa~`J zWXm=vp;4buMXKsJEIynR$8?#)2PUDqKh>ech&x(@Eb=Hjm9dT{|u7bRHvbT4_v<-%{1BrEt~|ub~M*$ z6B?u#7Y9cRogX_1A~z|qQDtO=b{a?{;YUQb*J+G|3lFg#oA8R_zJqMiCRAn^S$2Way^gcz_@AClO83&!q4cnmpnK~yl)gnq>Z8+8y4Mlbcr)C+9aXNsjzjq| z}U^It}k^d>r&(orZTF$5`VSqSG+O1)|^5 zX&B?T%`nCja`{mjXo4%Qz%|4%TBH4-M4wA6V~dg@{d$^p--1d9o@W!cC^^!C%WTUQ ztVL8i!OUBgX423Tto>FPYXuo|fnG?s;NR>N`(~>WRcP*+=})9|$K$V0x@=}>%@m^@;&PNOS! zq{b=NX?UQS^!P!iQU7C9{~vW4jr}bdZH-O`pli)I%}zj(&O0b!i=F^Q`VqZVr=iGp zYV~b84Mk3nmu%N*C{mAFe}_&(ks27`9XoXziqt#FMr?<7{YZw`qv0lW#mi)Xy*eKT z#jBKWpH5>?oN$Wm-3~(?Btsn2aO#3@k(}ciZGnL=kzr2g`C#Bel6z98{RIDkr0*%6 zhF4FcUT|8c$*aj5&*(I~x-xa`vpVgKH%QKqrO)Yr7seiH;qyA}z#vB%F6cDIoEhZq z7j+sHtwZj8NvBcKx5$Go>oh7_c8cBEp%g~dqZYiO;oj)JgJ?|nRika_CcmC%Eq20# z8=qs7cfy0)9bijAN6jHm{Zr$kVPFQ)f9W*jEIGvfCjLVQS@Ffm- zyGMzrQ%b&(Y~(=cdq_lz0ig89BqG%SPK>&i<_j`Ywvm9+pOfM_ z27tO=xW*oX(^ZEWG+$4UsZ{EFH4OkV-yxvD0HF94vT&gR_z5w~38-ZNP9Y|hfZ7J& zfZfQDbqv5$h!LqObw$OK&og9;5Oebw+p`x6MNpky(^=7HVj_sO*Z^P#Gufqy0YJmI z$p@MmK!6bQ6?N-o1^^#;L~hmG0HAUY(y)aA_y{qrsVB8G6q3AQ?Q5)T9~AnYq<7R= z$>k=KEnhbPXjp-OP6hxQE+>`WFaW50g8Fr513=3SBcQ|pP=_1>x)?wp_M6gGv(!*X zM6GI`XMOjhaX+WV?Q5_?p+Bj7oKdRH*`UzrYwQd-T{Wq3-_jGPako=j4mAK2JBol| z27tyrPlg$80I<|z0!A1B8aIJ}kp_UqEu_XBWdLa0rv!{PRHw%M{jg3ACg;tXEPjpsl+;L>f83sV^M*uSb*l;naJktQ6@?mPaSq6Z{9YnyV27o$b z5b&7+pm7&b2y9GKcM#Pv&N7=GNN}I~zG%~Ny6U@Ho>m=iA z9gtC{iDa0SMk!ussVgk^Fei# zBq}Ldr-73UB(FJanI_(iy0r=~b=B%m%HRP_@EV8ZB1948IH z9UqdV!Tpp0U^i?QIqhi!zyXt=kUh^B0KUTVD>=^7WS__hJSZWBo5I|cx|-6X5r zH2~PHA}Msw0AROSRQ!DdfZg_x&<6%!*zF1^`))sMVqj0I~*OWlc{)))jKHL?Z#Rrjepa z1^`)B5}s@TkTrx{ImG}VYt8|739@1=+^l*64c#Tw5)TakoU^a8hNqO*q|MjZ>{Ci3 zSKK?ef9-5;E^j0V(c}@ z-ZRZVfrz)es4jEOReWh>=^E8z9$z|1v+t{qe(|;WHc~R}XNhekrPRUFQUocz(Yy)^ zzj^l2G$`SvqZ@t@5H6k1wh)bzibqg7g2`hi;Jk$EVHhF)#2vae4o@m0LY zr+q~8H+cPHrq=;7c$jFWFCmwCJ;17=BTh8012xxcMr~9yQ#AJu!d7{&=U18Y3|^)` zbd^;-qXZ>Cq+$n&<~5;$u+FQ5sIj7XY8X8wzexkohoZS-I6Wrcd6m759NuH7mjd_vuqjADydYL9isUu7V*!;cj+<^vv$!uG#U%pUJk0wW6}H|22aGjYJQJV_;1l% zy#h|b^C~}D{`VPWvS;LV8r+^ra$y!$wuS8;5w3QT{<^@DBh+B2(;-$bLJgDJ9%DTs)EMdSbL@TkpLUgfPyg#3 zVQ29_VmQ=N;!Sn25L)RGO1Jhlo$HS`pgLd$O-OHdfrUq^tpes^1hBs2L8Eem0Z45^ zso9=~*?W;{U|a+`hj>|z+5vPM7QZ(kb+P?_Pb7Ea%jn4tgWT}h+@hS@MH*ELi*vgQxsR7-aiN_k@KQ+tK+*P9yR3Z zv`d0ms*4?PZg@64Y=G;heYN|y(5vV~T=OrrwyECQ#P^O_4c(ta>L5=oQ;&$Fw zo}G`e9!h*M+EC(|#GU9F6!-(7h+FNs#2q#x6Gv1a6mjv-rAX4OBY?I9a*O`0WuF9K z9D!VEL37Mi076z0%4;Ub5tRQjfU^jw5SyEz2Dpmx7&E7kyvSX1IPc2X!Gw^r9LkC& z4Xg>EDuLzX*=7wK2%tBCv#CE=H1G=mvkAOQ22?cg1b_nwX`P8PP6O$j?D{_Z#NPxB zab&q+9h=olRAW=35syS@^usuODFu904%^k$zdMEK!X!O+kE87Tb+@ zr7sYlLrk^_*fNC35roEpAR7FTogW8F+!`+6RY?Fhk#aqYMJB0XChu%$kj-i*sg+FW zh^J+MtnU&qvVN#a21iu2(RUWc#O!SY&IrY^)q?p;04DV_Gz*jYDz;qHHWQFR_mB* zBVL%ptSOM%7V*|OEGtDVPU(+$UxY@TVTSRDyh}ts5M_vbO2kMI-y*Uyhkb|az6TKB zK?yTawnr|Gp~+>pQq+Jd;fRMKH2Dq*P0?8}>I<)}0+9tYol-V}XpNLuO4$UW70?#B ztVXKZqQNV@QPz4RxfSn?Hgr^>hC7T-{r8`J*Xmfdqc1fpr1YAaEpQU!{Rl0E|Lt#y=bN zz2wC&0y(QMf#sCM$JcvE{uzPIsi=mVYE^X;@~g6K717?Mh?i6?zgbariLRL>b+Hsc zL$X}|ZEO$k6NHgqu~dr)JV4AscW?fL`q6xytN#nG`8rqg3z$`4TbL&0gBR&#dV0%Z z>YRN%|No`xI{18A&3H~pm8fHnf?~s}vZs~Ql%zDegmwEzj>_+#&A!6}KCxR`9b{O7 z3=68V=ILrwQXZyuV#j}EI6xUD(E!#lfij##hJ#hvymU2OdKAUBq^pgjRcDwpLyb07 z$b$pru__rzOE}EhWvK0?EBo1x8EUe$=@k0~JWbvLPcMX4jYeS*%*!RMe+GRHq5aB8 zlvCgg6X`2C#U0wwWwDSCgEgz6?;~{N%~hMX)Ru`I8jG*2#!EjQXH6@s z2~xc)Y*b}jgX_X<@;#|D71LrR+5p60POQZk24W&7=D}S+lo5dzqbW|wI9wg&D|qYT z5;{6hZMiM@+GCi}3T`V^;{~6pDN|Adu4l=Hb8JqQ z8tZ+*0<^KzNkiLSW5=`9IBC>j_8h`ZvIG3C7yJ&Xkn?lF4ny!Jva|rkB`+9-R~ZGJvH9}@?6+*p`&Q#& zL5>>Ov>E0I@?^1yD&Mskd{CaM&1Qv?DVX}prPwgiA483%Y^kUfPT%iCQgiZ^7SGZ- zUnyzcHRd84nWI)nS%`iq_Y(QTb297qm|w~bAnd{mVGUjgV+V57j0m2kx#+~k9HHx6 zbX&QFcAp4Z=x#Z|B6HQSu(0=D?4%g}i?;P)Nj>7gu_4o}?2UnuNvzX{;g<3ba@BS; zLuR+CsGDeu!`D^S9<;?FC{I1yW)_}T3zqNjD_ZvBSF*V9>qWcyD?pSb-{A#|Si~E| zcJ*gsbHlG>8Fw8Ov6O<@&C(EYcS|U6ljRKJX3L(RS*>d52@!``-)d@8X@|LdOEon^ zmInXK{>WDgrJ!F}UQIPs!koExO*Mt)>7UiaJY7D^eyFL<4$s$AGb=Sj0lpcg-z}JB zZ-PSnM+ka=D*L5-5E9f3<@zP?cyPflte`-x;HZL`n^zFW!h>$G!3F9VhaWWaO7J|4 zJkcAjGr3U3S+&<$-9oi$y=U3kC@ue) z#nx7%Tsc%!PrrQ-J`c&W5#olIpxj>eCBU|V-bh$)lH8kPH$Yz|tcaBF!?Cy;ZbCRh z+;HOS%dt|>9SG|~W%T3NLeR4b8%BKn?O{~NRRCuRd`RE`&KQ~RCIsfQpK7a10-jPi zop7V9{fT8CqlOi_US|vIs0nqw&{ATXS5lKx3E@X+@C;&^9b2oxPiT>5)VObns^!=O zj&>-jRX+2ttENkne`fXSVr=^5C)T5`npj~QHvZrS8yBbXkP*kPZSi44;1wg0YdAv0 zkxlG}x@vq_-1HY6BkNbKW5n0z3J7z{tZeR5HL5(KNbSMz8mH7#r;DzNH?h%NiNO90 z!KcG-h$n0Dw<-RW7T-(p6FEYAs$Ly~N`OEuK&Oo3!{M!jEWicj72Bg6{QT~73zx|-4Qe?gSnL1pl21Z51ZkpfBg;ixEZ`> z_+=K*T#breNhS?@MFlNm1kbn`8P^xE4$ak3VW+TXP=B|o>mAK^PU*fg_G@fUGlwYb z(nt?~7TrP}Mc*uYmJu4qcDKL?hYy#9wp16=hs(CLRIiEBsh`-=)++yS*Yd=2G?eL z0#0Xu&q)y8w$*_k0v(^hPWT#EpS#SblN#gb12N9f@b)mWT=6ce)k&=#QjWSLi$&hG zU`N|CFo^YdHo-RfE?d}1tr4>BHo(_77-0LITCA88A-1EJXS{&{wb@-@&E!=O>m7ZE zWxS!ry1s>^c(Jv&8N+~$^c350Jq4SfVs6)#OK@|R_QeK*~S)?z1K>k!*xD(8)q_BJ72h!Erfq*rJ8UDV7oP3&T= zMY_CcNAcacToAv{=&UA0EGNb{WnZMnoFIb__Gyl|ySxeCZLDzfF00oWm!ofQvSHws zj@)JoI^!~wc#G}sjEUr@yV$Rt)qDxx;7Tr0gTjiTxo>^bGz><8)BrDkgoHnCvo0lS z!;sY|QK@cDIyEE9frjqNK@v!qY1F}E)2bk_x{(-hgRpk0OgVnGQ0 zVQ(eI(v-QR_7pjm3b_hTy@-%fqJen?Itp=*jF3{MfyD&o0;o)28r5`)+>^jA06HP0 zUZUcr$sSbP`v6>12z{OMzbA96tpuX#cnL>H*-CY*C8zd*qkanJ_Yf)`y$pY-B^OY?5u5Ry!5~|% z1Zl60(;)r^Q_3!K##(X-iJ1g+6hb9>|05BAwx*MwaF&q zgs$o+R}IQvNv^;f@r6>iUMN*bE+D0%>R^mT(3Gkqx73uXNZXZ>y(cLpHm}IFsU#0C zgO7?WvNO&uQFL@d&S2Vkqr4=XS0jJE=;zOG@V^ zj!l$#FO{Y@PpwKq;x!$^ig4U1LPk7PdeaLl;5GNKUftE8!2D7i{6kyVNoZwkVV6Cy z)iblj9`<>6HPW+-!9Qvb+e7?MyZwtFw~?7M_poQ()v%fib^fePh_pmOmFYmd%GhZC zCZbrGtJVEq`4e!d@p7YjBu}`_+V@Zcn{iWF5}Q@zMzYAg z$w>J2Hg6ygqk(wkeYMK>K;~{mY*!Dps+9ISbML7p=Z*n35+Mf#@W0dtRnVk&B=sPc z=jS114npb@a^|~|avb1x0Go@-d-haQ+|&P}X4@eBqXX1H=S(@ajVGniT*2hcdhBjLHK0u%;^_#vy-V?J#2u11jmhHyyo;deb5zr3Hh|9vCj2!Db`XUH$;Rkjoe2CQ4q^$2%as34*58B*~Yov<1Lw0=ZU`B_Fbqe*-tc zj*xoE#YaAg4`;JxgJy2n(BUt~T2Fdm^MznT9*693pO6lh&*ro_j_8%VuO*^W>< z%+g9oXo$r?gn~`=v4Dq1BDt9Nye~QEQdJ84bp)Y$lPnjGlt!)H`7cd9#3@qHAn+G< z#(n)q;Ci1pGme3YcZpkwkjt(F&kMI5qPgvhZbGKfy2*G+$aI6oDaf*0%VOr&vgl+X zqtW$WY68ThnjpBPQO`#Q2-LrCFk zKKsOM@^}A6=nx1PjoFyNSgLsqL<58r+N}?%y{KI$1L#X&yL;%R`@~^%jhKL^GQAKq zPdy-VPi^=b7HSc=H}8iE?(%XpS?Wl-IGhx@kA@bbOoY@cGI&mEDEa#Zk#~*Pz|jaHHI}kn)Jhl% zpg)1UzdY8!asXcu$gjRnL>G7bXF&cSl+P5NiX5!i6nBOQsVk^1&or0c{c;5xNl_^=x`GeDbPs_Gw6?&DNeEnCI3l44TwWF;=?I#< z!CW5w%0dHZ*jS1fWe98wuGR=#U_V6q5J3u#Lu4!h7g&bKOavig7X|=6cwOGcIt){T zTrY;sm(6%k6f*ua`26(te~2RgIY93Fw+kE907M1Er&FSC5}|Rn#=@Dmy=P3AiBq+ z23mpyx+s09CCJm;n}p0&I=I*Xo128J^|}bHec9xZYG~k4>g=n;3Y*qu=ij8hRQ6pW zK4peW$EJ~Lh_voDyD(CX58eVt+<=g}pZKvGjqcrl25_YXiyWm!rI=dc{6mDoBgh_% zNFWgxL8Kv)O2kbNwJFk)^&h3SuHF{$)-R^bFA=w>A0RRop{_L>kJ}KLNrVDo zGa_pdvJ`f4H1vzX`|hLFl$86x?jjUUMs{l}bW()6i$H`S5<!b zN4yAu7vBkyjzm!LgAsWXffqj&k%>f5@!ue_tQ9*uT8*HhpHb0Qfn7%6MgNJ&9|*i? zpVoNViNK4lgGfPZ*2<+;@|#Ha5evl-nv2WkB~bfOhy20)jSwsG-dt>HsJpkl*Ii*Eo9v=z>tijDay7 z%8g1fuBTPHYZuf-NS=?7X#)#gP-}q&{ew;t&jJorS_HrDYS)OHRiQJ`ObeQ78;+Vy1#mq))`USrW&9VX=RQoxjiz~vPnlHcAfUK7|FR7(Udupc755QL2DXgfY? zi`!V(ST!i&#r5T7y>c;*wnlMuDOiZ0k0Ec2Mdi8!=XM&3NDT~jNOYIy;zC2N^3Z}F z*&S+9BYPyH8KMREU5F=7qN!AZ=>0yhRal3?_<-?ea79dV-=w)yf|x}&MV~;)=?E1& z(Abk8Hsnh#%_{OaZ-Ur~{W(@uT>NG|L7d2!9$Gf!lglK{Ib1nELV6^m(|t{{=FR1h z_#IVWNc)jyr+%6rC&Ly?xE|la8&bIQ`ib?)d9Q){1nI$x@)JAgOD|?p%jGBbp&Xq$ z;BAfKt#Z1JbkJMmk-Ix#zyP3QLxw++(l4LjuW&zVFnV^v-aG^$^Dt7$ z1a7FxKO1!gw*u+P8?_-OT|yRVSX7yq+tIDN(6pHDvM1PMfNNHvRHtT^39p#NdlJm@ zGcix+W=TZ(VF<67CFg}%W^l8NMe^GSReC@;nPoM!B(u!qX89CJGY~Yhq=82i=$D)2 zL-z|{=4M$7o*y|MH%k_0q+f2958X{rm@^&%(*a`4Y=TrWOE#}5)*fE*^$)pONLOx_ zskC`0i!^-IEG>3Yj~g9GQ@m4nMhRz!!?@_atK~_5EEbHeL?iHTDD5gjE56n?x-Mar z-+)mNT5ksPS>zS@Z*7t=)>e2FXh$TsN8r=0;fM?*f~H;D5ZQ#lr(L%Z`Hcvgb~!s^ zLEQ^KS%G@x(BAH{#hvPbiF6fhA{}GYt4k4GdW1HCm}ki;0eqT8Ue%W75pqg40c~9v zL*$hDv^L$AMszu)ga-6>hpQu=#>W<+jg>NllLV_E_ahNlF3+8!&ZX(!*(qv?|9i7u zJYK^-7k>If_>J;rQ&m-@=Uu(0sTI8FIg(jbcA;3C<;g8JcbXa~;o;WWX}Bxt^E^D5Jdu&Z$CvOLau+HzP4Cf)1KY35>AWC>h z)Aj@Gtc!)EVmhFftqhB09L&-i=M7lHg!k5YiHJRx*C-*3h@yLLg+O- z7I^koc0T_>98bQyl!u6Xh~y7CvoFDJT8#L@&g}4XHPm-A;u{f^-C#P4$mz~Z{7{`Q zZNA4Aey9$R9^YdDAK}5%ynC$hBXx|_CXQ|YNUbbgzsH__q}B;LTlS)wDfjg!lX^8n z?pax8CbRU;M0O& z8%;DGK&d+j9(@}jDTHH638s$-9{kcC>X;6`DxfnFJk|Sb>L+S|sT4#>30wM!8XNY* z>=#;I)U^~EA`|{fAH95j8p(>%B0^bk(@@{?7Bkd(e0$1VrlwK*9AWAoBGqN@EKJ^u zNME~{ydEOPproM)Av5o@C$n&;wFkrwgs^~zsIiaeAg)^gZj`X$=4X6w2_L*8S;5ynT6had)l09|wM~*b4 zCYLT=@frMm(S5eEOpOd|1?)A1c&^&X$|PBA7GE@k{aS|IhbJE}(`+?1bskt|BWMbo z;|gpCy%|AM;5=90SJ2l=%iGRY-9;(>0ejwOYcx!ZJYd*&|)NY8s(Uo1G_zc89?8>A$>RVFL12$rg8XdO=*lGl5jFwtg zg_;2RbEB?n_`;}c`y92R)b{~IUeay0Im5)jQG$57?*kuvaj? zJ2swnXItl~sV*1YXtv?m>-Ru?5H!QK<%S*A6Hgxz65Yv89XU1!^k;NUf?U?d}~2}gW$`n(golCoUdZP7zyg((;KezHxi#vrclEA za6u8h;q1NH^7(4G&l_Zxeh%`w%78O^yRpq*sD9;l=c^9U)BsSu-fZI%3_hiZmmpLc z>4!sQ5E<2*-Cm*wvc?P4My446KJLxtEl}Sytwel9Zx*x=x%MEw3xVglhR78?SII); zdII22p3AR%&qD0E@R>{cG_Yr0rT_W%%KIO%{3WWNgo{ASC2BRZ+6R^GS@XWlGR7ku_@xk2)wl3i1h43I(9XUMf~kPq@Ew^_oaG@M#g$e)!fi`=e-zfdci_; zlu(gA){OLGbC#-K(q^~%%hWvD>^5GWXEv4n^QN2b3lXrfW#E70YzGoZak(nVw*4>bL~T5sMVTaha+jn5sQuc`MWa{|(56 zH)~Lw=tXKLK!;zteRN=#tl?uS4^%&RR&=f#|2DFY| zPNI%zqIx1nCxqy+#B@XoBT;JrEG6(;l7Cd=4DW}-6cM67CeEW$5OEd&sE$CJw~lFi z-9WxUeBFufxa85E>M;+-dL?6^Bev9haAKTs$VsBIPo{${8Rb$e2;+i zd<}{>LWn*={b#)tL|_*Ho%^%oHQ0}J^)J?ajang;XIiRds>GR>YRp3ViYIL88Z{c9 z<%Ni8k`MWz7#sSKonNCikm^2ViEEA2KCh&9SgQ{39LXz=^#~|=dae4Qa}pVlo!;ut zDz8@?wtWxrsR;N>pr5~RE5swMunr|;?4(Y9_Z49gKDbrl!tQffUm)*1gzT|Y>;sOi z0lm6EJG)+OV7h?#IoNN5+Bhqi++eHs^$pqiZ$mh?H~AXEwtE!;xew;M2)XotuO|}S z<&its$_$_2HCpG(%?cJz`HCPFeT0O_|{u+()gAufPzRMk^ z1L#%=RjQ#z^`U<+TwJs7Qs4c^K|SUpBu*c|GB=?D%Mo8XfQ{Rvb}(&4eB%IieG~33 zZXo{402aL&cNfnQe~KVf-m412nf184pdXC6f>_N$YE1KkAYK-PCNF2M1K#|~th zH~)W|xOmN|0^BB>U@alx3FKT-V3SbjN;Wy=|8JX2`2RVtcW0?vu)Ok$)u#V{4xtCm z`N2)u<2&rVE!esp|AZ~uqDE;h+Kn5j8kDR$kX_iK=DGf$-qzUUy;uLbUKweW5C(D} zG!intCvU4~dWx+8a5FfF88uF}A$=0ksln;6%!~wbwL;S|u*Gt=K49ZMGYS!R`5LO8 zcnPUHkgEnDw7r;#jckvBQQiOP3w3y{C>yufP_mfd|0QITK!vWbzJeQ-Qf>DWc44bp zLN{fF+tmJ{rxv}K2K<88UuX(ajJqfLOHE{lwyD)=kEr){bro$7-LYN$n6`(u-=S|0 zE!d@P5A8w!u|4#IUHbOW?Yq?|H*H&J=*w-PkM^sTBy8zSIH1;`sZGxV+SF#r0kzv3 z{A|Ne?QBDt&Ng(!$<5G_TPAKXR~`?Bhz-B9{s(b;I{A0@*+Fbu$9~D32eJ7L&sgprR69w3-C@lRsYQvj z>BrW|^CIQ9q3=b(BtkUpfb{KX@_&IuEW5+DA5t5+=200g(XkI1j6bog6|Q_0Dr!lI z)BvsFN5$mujWn=PUnnIui{qPw-WI*6yah=A93h_1`QH&escc+76ZjJJSkb4C6?qa5 z{*4mHiLq40lR@A=h>*y4-^~!6b-de$3^;;E)Tfbn5+T*L zPbl~eHA~^E*C}xM>BT8{c09c~mVUn`#gjzu-;nzp#%(`EeM#kI zKo=ua`V*yBgw%?d+Sfj+=B2Er{C=WJQa?aqJ+9jKxSCYRC9VC$91?ICnRgFjD~_tE z0ilEONlAo^`QRrNKLu@eQ?)7NaTwVIIcAuZ8aFc zfWd6pF*QMM_grEpkEwB1dT(32ZCbULnU7%W*2J#bK$xB$*G2$gpr`4*(4UO;3YB4{bId^)!X>iFRtr6f_@ zIt0%fP;Au&oI97yG#pr8gsR*$3prKTU%+RRH85MGx*%&CaKe0@t>#q;p#Ltd#A}%(~?)taHCY-`c ztP7EG-Y~ZGlp5?hK)OzNCF2#!$jv^X5}6$txxpvYB&QXdkr?D?LY{z~o~fKF;YGB_ z>cFT1c~?qEyNEcqOyIl7>L8C%ocU ztp8~|=swniO+F3Hi%IS<8|h*EiDiRuDc784SPp651!6iOXmuD?$hB^kTaBi*Be+iE zk@^mTru#^aEe5?1A?*%sV@a>kT(1p))*#?Uq1}aCNXX+Z8v%Fz2%uP2_1g~kmlv4< z>IN9kBV_ZHtUP{hGOPzjWgX7o{X*`E)wn0N9Dznf$l(Kc4ep2^gPw|@IbuF{#3P{h zjbLA&QA0Dtk?0MS&K2a8EpudWh z&{M@sbX3_xun5WcTubG%YJ9zEV52^|Rb#`=hmiV>j?sYp7TMfpq6_4+r7y1gL3rJe zuKS13p7eL6st4=;%s-vpy>n;h&#Ig0Qa$&acB#H_PTkTjRg?wOHt!kWcDsruHSOYY zi^X)&+6H&6R(gBFbSWW}?qGfB?FrN6gaiwLz70O{f`X9|SjbK}Pn`3Q_45IQ%c?x{N!v%Kif|{Q79BSKFn$(|L;ZT$6rfWzGqFWEIbW;%B zHF%|(f@s3;m1qiThPzd-I8(?rXmSyIK|=Piju%zcH3aR}5h0w0;F<6-ci9HLB9@S* z&+T7BX2B@92tovZJMM4CCSdP@eitD!4j0Rc=uA;rNf zWgaA5xPD)7{d`AbK8{e~2ekhC$PkO3vmn3;iHU$?5hB+>;uMq>w+oR2h(JZ|OOek2 zlmfu9Zf#KF2j2OcScS`KR=W}^wM!zkpYbP_C9Wj9yzZU3DLWqqgN8|uP;2q^LgEvf z;;9*wz@F@{UihXBbtK;$(^wPpb!`ti5?d|be_0I`UHeQj7O`x(I1Sh$3ic4IkM(bG zJ7TbZ!Rl+jNSPdTjDyvW6QYAop0N6JLUPa%*j9xTvV+cru&R!y$l~UpLmsRFek9D| zpd+xYfev>lX>-t~T5Awz^UikAtG?E7#~ozybI=*s)(9?6anKpq)=17rM_~U34vQNp zBsV0GaD8!pnUjvVwl>mfZ^0RHgvDM{<6U&bwY5H1MDXd3I$*PUHj1-0k-r6H z#zdRGVn>UJzWm5*>jaB0{Ln#1UR$R+TOuwv=*Vm92Toj~VI4a1+WN6`1_+CTj=Z+c zv@Hf<>07pqIl9o8{f(UWYnb+3kHYd5O zgO0qmerrnt5#yjEudVAnn}djV(2>{HEzY4Jk{xv9wRIO~OLNeX*Vdz)Ez?0qURzIk zPXk+yBO|>rlFm9;gUWNznb+3KT-AIBoq28j*?Al(wH$Qjwe>fiQskf`udR1D(a=Fh zURxh>qS%2WuRr|>YZW;1de2YlHqn<(xR!k*X-qXgfg}KI-Y?h%(IyTjWoN~lfuFlM z9^;DXS=adhgvBvr4VLigIjxv_*&H_bk7uzn8iY5uq-RT>;>RuN*^%c7;Fk0(Ob8NaIEtufVFu0;J9-liX2l$Lj8|;fejsx(88WGcuKM3 z3eLdx{G2P<-0@X7h()|EtsRevSnhPkrKvr49?x%il{+~qQA)Wp1}R+}bcnX+8WP|V zy2I8uhI~Dj(A$v^fut>5$^MR1s^-psTx1&LI1G>T+{a5DD#&!exU7V1z*?#KEByHK z6UXI_7FrH+(23*n>mkMPI>A9Fj?0}woxFuUp?BvyS5SEi<(z5`s>E{#*ldmpI2~Fp z4Q!8Y;_aY$f!vkX-p@gYkjq*_1UTssa#?E#I)vOwhmgxXIH#K!7UJx4nw`CY<-RHo z=KU)yOjk%b#Tkb?070cIq@2bHHwPU?E@$xjIE#Z0BbT$Boxo;u&|&0qu6-N`ZwDPl zF6Y@k1L5bO!^q`A=Nb?J+>UaQ^B9N_2OUN(H}JXvBEpe;0YtIwFRQ>7|Ek_}O(VLg zJQc>l*W_q~GQ*QCZZ^aN+RBjGSM*Qh31m&XpQqD00;FRIMmJ9%UOODP2u4p|t*VY; z)Hr^eusHgYZ~1e==5WDWo(d72-YhF9U=+4uJBq zLB8nq6VfHG8gN|wiZramAoV+rtz- zJc=RM<}n@mhwF5(;H0CF?GZX1Bsgcl9qf@h9Vj^IlyZBNPGfkTjWO6Bt<$RDq*Kc6 zF*>aX&Ueuq_6j=fFSwko3Q=IJ2FN~wbM+xG#OVx9!C4*0V%Xz#8soJa-uSd9=(LyM zq*ER3i8}2NoOEirJxQnSf|E`ywoX4Iz^{FGX-Z1+Q^=&10I6&Svmw()M=~W zbhjcsO`|0TOxsId$bRxOE zg-)AbAKb>;Tk5pC;G`4D?X7egvnFqhHTKpzEyE7SLATLqT(Idxa(i2y76m7rNN#VZ z)7V1S{(&0XlujhKzoCJ26?c-?bk=Ejh2RP0OY}_e3OZBX-bJI`(WrE$yuDPXp(IW) zKlT8PfD_EE53zT?h@7CWo*zo%MDyH-NIzj=eIKfYE;_;7K2lE)M>iq29;MS^g7XxW zKU$|l1?N5VKf6n((WsTsjqPJ}8jb2t{BP?t8uc&Ye@Ca$sHaJvu^MgiMK_r?4i$b^ z18}&ivlE64`#3!VD%^$W@j4A}+k;`iK0&9^4SJCR6LlKhfWF#ipQO<;yxc{tKUq(= z2u=%m-4vZRqnkuhhN&8WG$)$J`zIQXV;Y@w zp0j<1PQx;EoU@(jG%P`0F)q|;C_=|LB)<$ZxjmH2mgE@~a&>?I}2)nprvW6`Z#L->u{5 zK(on#_vkd-WivVaUY&-!yiX3lPp9E7_dJ;T7u-c5IY)IIdc8+}eN3leAQ5*$_TxGY z1LYI{37v+4Zjs-f)M* ?_?C8V34<=+in41F59v8J!M5M+=||pVa{jpN(-cT+^0rPJmb|0Wh9&Rn zv|-76I&E0;zD^sKe4x{YB_Hba3rjxI0mG7i=(J(U$2x6T@=u*MEcusC8c(}pFV z>a=0WXFBa&N4Mm29WX5Uw@y2RFm6e_)Ti|pyAZ}rDH?!H2!kzspQ&{2;-iK4*_VU1q)%^H5~>JB!qF_^fG`zA&fhxx2U+Z zJOSALM&9H!SX3d5yQhx!-vE4tFz%xG@PJl|j}XRv zR5bvn&^nBJX@G%v3t`+#0}a4S2;*)VWB`VBgAKs2ZioSB)?N8rEz+zTV{ux^|I7}kw90K>Wo24Gk>(EtqVCjHC0$p(vIU3~IDvy5TgR0A-qThRav>!uli zVckjwU|2WZ0A5%(!$1t{W*UHD-O2`FSU1Z64C`ha0JrWZjRT5Y9cjF&Vc;-sRT@$A z4FJX+NJC;x1AuY!XhIVN%w{Z0OJm(QW_Zm8TURZ z-`GH4-0FOyYXC6rx1?*a0l>Izs53V)02ucuS){1}z_>fC?4}q{6hq%MvJcP`Fue(D zL|F$KoG|7B8*42EL{!cr3k^0BQ2k_*Im7@^{il@mEdxOH7ueZXl=TVKdbpn8W)i~I zk*pC0r@Ig~iP~eN0bu7~k~@=R=y#eD-qjO)P_^b%*Ks;vfvf|btS>ly=aM?p3=ycw z`wq5S4wxtnwXtSy0qI$Ee6~H`tl)W>%|XX!+dG=~;sK7ggO1O(_b?aZnS`H%j?cCa zG=C2wz|q;t)*|m4hiF=}!TdQMttUH%P`e*8e-wa+BaXFH>EFx&c#9%4>Jl}cNi@&H zJzY+eKo`D9oD?03MX9K7sHO8n^EsS=kRMe*joL~y50AjgOVm^wYwRAdr6`D6wyVhR zoySDQ64gzk-i=Bps=G!_jA~D^duY_usHv3JQ=>kJnrUaPO#!u}MGp44DWIYBj*ZdIDNb6P6diQe<&(+@$+77OJ7Nx~=#txmBhg9^2rNGKSTfYjv4ARti6Fck z`_Pa+>3ogEkFSvWWc(j{?*S!6@wW?4&&ZvN3SH~)#PnQBtG8R}rqK=Za(x=?o(F>rPOtZo|AH_~~m(x>~ z)>Y7BvMvg<6jxFQmc;@wU$RGF2%Z$!6cEe8&VJJR=0==O>OREy5uAbSmVrN8A|UQV z+!ArRapmI2h$H!voubZlg|nd_vDbVA{A# zYfvyab>gcGqbcN0mC|9Jw2Di-+4DkEC}~l_a5$R#yO?t|Pefa0I{p36TH+PcX&xGe zN%%qMh(Amxr)n2;W89o36GI&N&scL;C1@q`M7f*OI`E-O5ar}^M6V3zSDq7IZ#k*X z(*LPo4gEic|A%mO@-*b9g1y*z8KXP2z-f@iQ^B$AQ38Kc(D%zZ;xfxAYO2TYTDTr^ zrE^Cx&LS>_U@lyJ60ex?VNljscuCObhpV4WEq$znwGecqa5{yDf^uSgCIr*rdcK5a zf$J2>CML$r=N(frw11bDX!ORRFq?WJHEGjTRjIAe(z z5qDm%zaGD@gBzd~c8fx|G=d(rAVunOSR8x&T;sSu2za3%Uq!w$-~;C=}1 zrEo1vlvKj!Ab1*%uLubJL1Yf}EpdCU6VI>3%QCgI`?CBLkT1)p2>j7`Vo$EqtWzTb zRCmG7#tD2Uvx4#+G0(?t0=W87_`Vw1!E6?|8iLkvBWgmT!f`%Np8{~q`9U!)1Mf)t zlyh%WHNJzOL;pjcC8!If&!Yk@sn3%U@kBVK&!YkzoR+#};L>i1h>dwpyO!s&4weLxT>R^ckiFsRzh!@SZXm&? zHUWZh7m9Gcb8=`te$Ts5{43vS-*kX0pk4l{kvBb!bP05!M$Sc)rEqof^sFv{aa@!! zM%TT=*4!m9gC9X-j4E(fRp46@d==b?$cON&3&^h~--tq38Mqbz_oiWXv8KT3?tdXe zEGTeNEo8@%r=IvLqWAc3 zj5R-Xck4PDXiso7(inG<7*pu(LCnYxlw-hH!#Wti1IJEx+Q$X&;Dr) z0c9*;cl5LW^yOH%ah36hU%poNBl!A@#MgyR&d7UMtDpSyDIa=I`NZFqDt`%4cJnE7 z`IY&^-&g8*w9@fmmF#EmKX{QCU*wdG9M52T|C#LA9&YCMs$|P9#>zTe-Dj+Zz5aeZ zWKF7M-%!c+gny@t#q&s(*LfT+a#FdnZbtdrF>6cUe-6`tEs|gCR5U#fa3x$l*ZGVI ze%Tj1b_pmgaP?dXM3*gv??Lc3g$6%)7b;J-Nb@=w;vhjm;K1i2zkRY@oup*F7z~hKe0^Il{il5Ab!8U zOiV0s3J3g*-#@|)tm_5i>Qa0i;06u?XpSGH1Y-dP;zwV&LDK=|;Ky+U3jxl-kHwdY z$4ZxrA7y4k@jHi*DE$ilGXnd0d(r}^#20n00>19eSWTI#tsGie+b|#DjWvHFDb){V`a3cg@yl?=+hwA@nNt+2 z#P2e=5oU!ru9?$j-oxy2zBJ_fH4tfBF4J((KdCgnG&(Vj1&A{jP8I)aL%t4IKyVpc z{a{Se8s8|(|5gZYrf@Z1tM84XAy_$m1cFVMi9eb-*C#Ipr=*rFlkqTS@%g_cCf1j` zirZ&&=HqrD{7$&Klf&X2c!oX(IB*$F%xqydcgFiSA1~%McUm@u=N_5b5aixh+?U1$ zk1zyhlWVy+fvn{3{m1PHqRO|^sN(~(F2{~DI6P2>AA0r??-R}{WAs}1*TA92Mpr5y zGEvwqoC^PLLv(N9q>}RO+HSOFiqjEt+T~(a3#TY_CVroKxwxc-)9RQ_w5hikvUmEb z#NQhnH&ohL{oD*~G33j+22obS)$QS~=q*N1*&U4@;w$y{W?))RC+cECo7leZ8`(Q1 z5-r^hSSU?Ci!`3{(h){~l}=r8M2tY#ai75NLpW8j*Q%1*SKyEvxcVygE;kx-b$1K| zjTFAdPxx9xu2`Q6!HIBv?Co6|FfR2q_Q&_^kSQK->CE>p3W#OuF`IY*SjQnS; znSh3)+JoPawnJn^(Dyx(Rk@6)TrPvK2@V-TE)%M~!-lPw8M6&JynF`%_A-!U^_9DU z#&nv_Y>VnP&V*2SCH7~m6j!uyE=nIN8}MYYu(^|pZ5=FY7RS{bFM3z1?4MQXbYk{5 zR$_!%9Ts0yI*#hcf9uZgSTiJ+59b?);bUQy;+(wGU0E)*wJIW2pJ_y!!xWXP`(>Pxt8Z(mj0pjsR@yM7ITx5GDfD7LJh z%s%K#89H<&2zOVCSE`&={=I(j2eQ)iGry91yFZN4Ybm@_a1&+r-bk`B%mF?Qu46ZJ zJ*))Z(Mdl31=$}Zu#qqiGGk2+bT?MUdqH+-|3aL_aH?1@^krr@13w5ipcv62h&FM0 z3^NJFE}6M~@Od2$PZ+|EX{&rfC4!dAC$M(Z6Sm48=u3n>%+$K-)Fw#{J}wiBUxgm^ zD)Dt&r`e=w7+3`s8>$<>38~1j5+wDk9N*+a-(ZL00OdVpA%0fV%JunPSwwP_c)(+y z{bDQj*%Kq^4a?zzC=bxi7fW8Xv&GtW&KLg?1ML$e<}%RMF`COjBk&k#1Rev8z+<32 z58yG-n3%^v`x3xopfOmY$z`Bz1M(PXOwMDVF&r6aoAG}*D4#SGE76g%KqHciAIb!W zGFS=ENTt;mAHKv8lsYZ356ru0qC0+PCEiE`e0hmuA*o1g#P7z$)%bmS;u^at;5);m zYec$R7c;)(wIw94Eg^Yr3CU|qNM2h)^4b!T*OrjHwuHxPL#Fx%m<2l+8Ipz<+LzQM zH>naVk0&+BP2q$u=?BX#qsFPo(JVK5_%g3XRLOD^Lu#D-CYROL4{gn5wZXmv(5$vQ z0X$aQa{wNz?F|5r)%GQTX0@#~2|Q9;B#o1Tn$*?|z$3NwNduY5W3?RvFOSuB0f5J9 zyBok`wK15-YGW{u)%G|5S#6Tkb_l>DwK1n2sf{cikJMI1FOStm;IY~WB&+R$4vu8C zJ>0>0TCv(Wi#4bC8`2pjd5Y zqum}rvD(bB(nqn{%*is2VzrqwB~Yw3^EitYs90_0YzY*r&75nGoaV9G%=z|Qq^($O z=AsNXYQ<_ZPbyvnAH`}jPqkM7NLJf1osoUA+RSt9Zy{8yHgmZIiq&RbDIcg~G*YBL{Y0xqk~+$K{{tTyvW znMuWJGoN(^Ad+IWnLFiEHLER_Q*am*tSm`ri%kxn=MvgtQwlH{fyPWiTWo4!Jv#BA zMM7Kb*yeo!!d5L-@MF_sBhn1k4he0snJM|MNM3 z{Fm()i@Q4c{)vH2*K~Exl60_~I!DsMI@dYV{pBBu>wrg*_GOjiJdYvm#2yA5HCrxmQ}6fAZsN-*4oj-QDiNv zR>?uuN|LN)b=5e_mn2!s>ZY;fOMCn^-=A_j}`GdESe5E%kuCK!W zLSK?3E~}sRFYqNv;#QklkgC*BI*&WOrE;G{zDM*@MqQ zjbT-mH8?H&zwQ=;8&Ke$OsEG}!Y_D3y}#buqXagi@c7MFF7#;8@YxU43PQLAKeSxYoV zt&+uME!7ycN*0&(FO5;FWN}&NDhw8v_@S3$*O0koov#C-kYsLI7if&8N9LAwp~h(X zbJIoF-Y6UyTGl069`+@}K`{sNG7_<@%e0(}QmnztHHOAP#Ja0Dns9$CE?HMAIaVr@ zBw|^sG)Cb_#Il6OC=7{M)@qH>BuT`wuF)7RkVGu&T8+^HNyM_Q(-n zvWxYG#!wKsF4mhGgFcib)x~;C3-C!H)5UsQV^lkdF4j95XZw=mxmf!(Ml&GI#d=p` z^oV4+Snp|!Wr0a2Vtt?mcu~o4u?}jC7nSrO>qCuELu3zG zA8Cvl0(ofE0JL|h$uG3r)#R5NyPEt;V^@=3YwT+B8;xB}eyg#o$?r6FHTk{9o+f|L z0#}niYV2zACyiZA{;aX9$zL>fHTkQ?t|oue*wy6k8iRAqzw-CD2qM3q&j> z&{QD{L@XuHR3QsQEG2NMLKcWvN}{PkSjx}>O%<|0#8M$#?ShD<1g>^L#8LvK-BSmH zDuwO5kc2L@Xt6wF@Ga61dt05labN?ShD<1g>^L#8LuRyCh;MiK|@@ zv6R5oE{Ir4;A$5{EG2NY3nG>hxY`8~O9@=MJ5g%K}GBrr~n5EO4|`qMD;+fuj{u5=GK_4ir5} z(y~C(k{&Ke%K}MD3N%Tp;|NXCvOv;ONhp%m6(bZ$E7hn;T2@1P8O{YzBrR)l`rZVG zjU;JVbJ8b)zNJW7)`{uc0VGLlDdI|!mi1Wr-PmTXNLtpO^c!rIq)JFGYr@WtH`H|(&EABfGPVLjwx z4{E%X4hL&s0pqpS7}mfCe6TxGhBd&EdE6Z-!y4eoJnoK^VLfwX9&fAT!x-R(tav+( zVGIPAo*qFP*)UWuJSff{gK@^6Ftg(wbU=LdIh2og)EHm=k-Nk;hU3sZ-bKsx&^=zO zF>0cIulRk8Q&@I23({T7q46`Bkvff`@rsv4-BB=*NwJLgRdSA7=Ij+Kj&i2==HM_s zT*=d*2o4V8dW4&Xf~+HMRQ>^2Erl31#7FA%k^fZ(Mdz^?SGB?LB0fgRahg-Iale=~ z*6C2j{ax{+m7H^`oHB?{(il?}x9t&I5T8>7Z;eGhIi!!z(&^LUe@j%4gFp6PHRAso zj?m+CwZ9&r$LDE`{Cv*xpP(`HIrn9;7V+f%tN21K*CX`!B8~M3J$|CbdW0T7Nn z=Z{w-@khs_&=`5YNqp-85uf1n@%MOLjG5q!_MiT`xC=PR{Zw&12ITN-^gi*&1dLvu z;&b#^&w$dC7%Rs0SkFLf{(vq7(tm+( z(SsVJ5k0_0^^nG}xx2CvJghO^vdNe}iEq*vjf?YP@y!~e{I9b7?r;v3y^%_LRQq#y zx9Sbi>}aRYvCq)sN$r7*EFgYLV`SvttaW#ohm5?=R^krxkdZ-bweBzv8R>~}Y5dv0 zGBRkdcw%E zS5R@Kt}TJ5z09Uq=2{)Fi{5%yw3-UT^)1X@#65!@Az#7lXB-AQKgB@<`I^aAN4}1yz_Zt3xGr3Vr@&qpUrlw|m)}CYdS*2;@dry< zdqgJo9~AwjA-kODio0fYfSKXT>YCL7Jc?6Yao4O4proAZio0fY0QMaxyW*}{9k6{x zob8IcW;IR&E8=ul9A>rD0jSqSobQUms#f-0AnYsp>{XF_EHcCiuefXG(lq6aSKKvo zG38anDX+L|=K7IC&UwXMGuIEBos(Yi(fV7e+88G4ARPu4-v{T6ZdD?Y^)Acvg(icfU~&>`o);?rCKvdjsv__3}470MZ~ z_;go*GH?nkKEoBDLOBN(pXp`@-Fs25cf^+Iuz+u1<<575B11p(`3qbDGW5nl(Q*c| z-iwv%n&zzBf3q%K)0~xiHU+L}&dPm;9_fr9H?0V?-)R_+=%L#*7ocf|FxFlhOVy1P{e zMHgCh@hjq|Sh$4H-O_f~~HA&48aST-v2-9nHYu(;jovz~fi&P`GNyBD4k<1k|Dz>}c>As>CZ-_awk-JM+1<$)4$lVWo_6x26xx17NeupbS6*RJu z>~saFf*)DIFS-I$!88hXX+b*jzmJdK?S_E*PN86rkyEAmWweqL*=$~Nc$u z#=*F?=4Elr91M!5ur6M6Jy4b?%l^76z(%3{46)Z0U_d*Zo&G*ofbnc+w%RvbLBLmZ zH5K}%EAab@K4q(U%M}>dU^&;o*B=V~Z4Su5zfmjiyWY^-tJK>Et^j)boS8W23ZOT^ zdjHTBKyP1D@R2Kk-Zt|kpR1Kq;t^kTE-!0Ca zhqPjR`LkRPq_vo}knIYPRz9g4inFH1xV|JUBW&AX>H>xRqT2otxfD|N?ZZb zI?Og&>I#t753HUtSAeum`9R#rwBBcHYVCR;t;?9vHm(3^MVNS{D?nPOvdvbx0;F~0 zE>Sff-54*UWcD__rSvpU!uNHF39F{MhvCu}LaR?skix znf?v7P&jfTCH}AU0j;>o&fRYDOVZZ>lvu;rT34hW04TS5Qs1l7TeK#7rHN%(n|>BR zrFD?yxJk}qR9ia-;{~`ky}AwA7;iDyee~%MIz|aI{doHK@T#-U;oJXG`lnzZHCS)5 z;2)*O+mfImSoL3|&j1)`ZD!5s|Fjr13>edUR=&)EB{G}3Rx{)(r|p8Y`VTIl2rT*BPk zt>W(~n@*iQWTa2To|0F~iZ4Xk4=cZYWo=pJXN>e7;H|!0F=NJwF#L`5N3b{Gy)x^7 zs9xmc;f>fdbdhsOtmzPYw%`1L^FU-vRk8{H?$5axAfqzTCNdP%H0w2RxDu6_WO!k* zJqb`HfniOePg@E6)=q+U5(KQT!0bv?OAxf$6SS8g&2k7jND#8VZensBB}%u}WdU@O zAZ#512Q1N9f{1k`)2@{uYTd>-T_uQF3kbSNU|RPxPIn11th+!ZOZ1SyvidXWdI{pz z`Sj^2K~usS&9oaNvaOGqT<^?DD0k9o#z=jnk7H#p-+d)WS$hfkNswoaV6grYm zGeCj@>w5YOl%UXhmOg_dD6*#TIfFAdmqMq-) z!Jn5951)g1x~W;>?Q@({@~^nekJ-sjuOltB`fi-=mU!k`9Jb^O?7L3PYjS4EU63o`*QMyW#Bus^k7ah3 zg5U5!wZ}5MR=$L4k7af@nS$D5ncZEIrPLnF?7AqH-qjvUaorN9q!o99X7`bigV_9u z4T^mw2+M7u+5Kc>)9U%5IJm@VtAgv9DivH!Q|aK1*({t4-hHW)*XDLqe)i~=w~T}| zqb_@JWY;K=^?o6=3{*t+Q8GVS)_W_&lBG^_x$QK2g3NxoHI}g_$`BRSGE`Oe(Gs+> zPNdHy30hly&{(pMk?f{QxyLknvP_`bDr1}}5_FUsPP3=V^3=)=r`gkF0$qK9CsEhg z#|E-TVTw3#IY3VH66Q4RP5j{w)NcR6u8^1R!VL?VGPR&Q>@PPYux#KB|qzYDc_WKfz#ff9Dsf=?+X0^#k@xMMVkg*3R+X} zPyB6r0rVEAgyQpCmnWuDoP)n@SEA)-1oPjH)Bwrdy!r3QR)Es4x5d&coXoyF|I17& zsXYJ7%#34zy|n05_DUkQTikm;{u@u&t;1#Ct29%BG*NC%FA!kjspgR$3tV_47Sb z-#|}Bz0tBOq%}XF4vhw*`C+z*zcEY_CF5c(k+u98 zAmffhRA0yY@ctKl9;%{*f1vS8@$61K5WZD@s58zYjroe}LwqYc_2j) zQ#*Jg>d$;Xw8c$MRqN9^kFUer zgebZiTapMk_RqHOdJFAjN)gy{FGQ&Sy+F^5mPiVr`S! z3$W6_hu-I#dKK=TpNL?6t_3mnAmZUNPSj@Kd3bVrZufML#_&a#lMf z(QbT?1{)a-FN%iMPC?TU7@WpX!^wlbLV*ILd81Uz5M(FFKT<6tj7Xn3UbPH@xI3~^ zKLI~vwH%KhUbU1QnK4-_OqOpQ+fUtzcsGnH)%bkkt<{dD_Ha}g9r?Q6j)rjqTunT& z>KbQ=zjdY9#esINA`lSe}m!cYpRKoS)zP?$=A3ARQ>-9TRNgDE-*9iaN za5d|bn|fXAoMtqgj!&hrJ;`^({b#IcH6OOOEa~>aEa?J7nGQGXVZN%{$I;&yJuJrT zY(FO*B{jyVGCn2C_#VQ(3O8Jq;AvTaT7d(*;YP_q{9Bg6zoKp9XlA!35@b%sEP=82 z>K@D{IQ=hbt??2JxCtc8r(eUX^C#+ja@UOl{o%rRa)oMDglDB4}`6n6NJ{cs)U zok-ciV}@5U*RN)wN%$^Cs^<&Q_Ijr%>pzMpre2RB{pD;un=;r{yZ?+e7kVn%)Qc** z2T9!lH(aXw5vlDRz|X_^Mh<1G+3=4f9%d4h`&E{7XVi`%$Z${t?bKIq#>A#HM;7SCu0f#0X>SIU-2neQ50 z3j^8MXC4>(Zg46?B@h%{BceAtEi${}cL%r$-y*}a@MFd`q7OVmXW{o5*N6rDy&S(U zzeZfg2zTN4EpRfz>-h2NHR9D9ohgNjK8AhW-srIo*_bq~1&$PLZ#43|=$m-YlcI60 z;|!BQGK>Z(J!ZkU^u$J$+J(x@6I!h#dWw1ftwL zAIh~}M6h6#$5)4(tXq(1ILhOzLn#ZVC;QAOkFO5p$zX|SVFlt8TiX#QE6UTWLnSh` zoG4GP4wW)k6E+W}2e%?fdXRZY+ zLd)%9ygI=skFyS4W%mRKM|qreXtmi0U`BbIb!d$_3m_5Yan_-=5@bbrnsw+_dkK7; zC^!Cu?zFE3D2Vbj>(Dy$QEW`~l|*@*b!emcD!j_0JkC0_E%rM=Mf3zzNa#ts6yLSV zD37xaJtu=zM|qre=oJ~PW0c2PhxR5qBUo*e8-GG?*;4@OqCCwybU@~`A(KWSG)8fp^{cn4jX%NLu<>W+WYleXX6Zvn zC3GwPVB?S9m&Pq8={W_@K#-8zPtqrcr@)GdvYSeuQt-1>DYu`bPc1x{PL*=|N&2zP zKLrR!x&0)4dJNMWP-*iqqUsLE8N|br(~pz&=2+Zol0I7k9-eG*uSxnGjf)Db6PWh# z3K#hbe36RuipXJR0eeg?M{;tHNqPr6B_GH`lhZrf9RSQI4^2+*nlT2>CO zfUGDFO-}D)Uk2brdH8htK>H4Wf+!D7P9GBA3Q!Wo9+SYGYLCg!cRE9}Rk-z*NSoC7)HjJusSO|3t{cDIDl zA@UTwqVvx}Z`rY!fql^nF>En9MbBenjy}TVR zj}5+!rA!UhC(P@D3VH{O_G(!2AVq}?m1(qmHy!i+>PuP3%MCJGh6;JvK}PFP(f!$? z{vIdQKZIOZXM~uG;rMVjKUzAxFHi4g>!bUZo7U z);A4AuXnW}OS}YvbKu(4V`Fn#43DjxOie8|Vt)X*|BN*QO-yP?BW$tJ>nqgZjfiz6 zT$MakW3e%688RKd4trzae3cxm8H-dZL2Tx3UW&AgHCKAcEHb(=nGOiu4z6uMskmXi zlS=ibIw$}0@s${1?SZ#G*}>?{xRViYB3%1eV$}wxkOQaU4Nj_3W)l`C!z_pYVz{ak z(KWy_t%t4Z>$3*mN4WO!gqX3x8SDQfA+~OCn)iGh!Yy#V4lAjJUozgiUu^<5)_`i~ z>v+ACwqb{9jOx^b=r`G>4k6M%KSL8BM96t?U88JXdurG$t^*cu9b1C5Y3vy=3WYJobd&b& zKKb512j3^*I>~+6Z&;Ox^$YMfl*!Xr-ZYs~ryHQ+8^qc7Imd@);P=!U#OL>65PV0j zNZju6Y zvex&M`WW5u(Oj|rekW&Q@VP*p%IJM@wxXIFQNM7Vf|C*ae%bKG0gr~O>9?`A;UHRf zTN@WW@tTf97}Ye(Z-h!8A3789PrXsB*@#o1 zZo%)HZWOyWLao2%h%e~>C}a=cC~_ab$skj*Mb`(MW_ce%b^uQ0Z-&fY+FDFrtQDss zTqqB}owZ`k17K- zZg`ojXWcNEXWeW7@T?oA=2CK5gAh+=TOAxUCu14duQ#XB4G%1KG#`6AJM@4}Ez@LT+=0wX^OBYv;=& zt(`bJ3(wkV2jE#d4FI0CGZsKwJN0W#BG24e2;iAJI9KK`bLVaV&)Rt!fYy%axfz2L zZQD@j**2d8c(zRo7#5ywGXlV~ZJ005wwVtf&$gkDXW9^WrVRm28z|`)`|>oOczrXv z1Kim0$7Yx~O|)oW;@pPBLRaC>-%K1{6XKaTBaSd}J~`6Fc@^E8XX3mG;F&l$APsut z2HW(RDYlw~yq`XOmaM_7=rie6@H$Q+&+3tteuUMdu(W!_{4G!*r!mv3>`ysyl+9_( z^lAx$QSPjT)f16<&{j_~0MF_f2;f;glL0)d=WGDa>Jb2*)w2$ORuA;lXl_gQiL|ZG zXWU`??N(>F|C_kzv(0I2&qEE3A+c}SGW9=W%~fHnQOQr*knZmxnXlL4CO?X5`C`?RPCI{YzIYb6*@!$uJGOZV zG?E@{fxjt6>x3V9a`7&3XMxCk%BgB<&GctwT)|x0lL(HJz_7a!%$C4!-%T(_f`Gjh zU2OPx>kdQ-+Rqcrl^|@7xEv*(mvt2KY1$mqgipww2avEirU}oNAj{^6B)lN&vH-h9 zo15js3$r#OT!H;K%f2X^uR)1@4oh)j&LDttyE(IPQcf1iP+{{5nDEK+L6!DmX5o|q zmaf_txRvPCz|lZyo$#9F<}#IUjFzJT(u2M5*EAzpk^T5#$2l8_YnoK~&nytbo_3nY z*W*!T&mFP!X~*gJJ(7tONTCr7#xjN>r;$R9eKB9)3kr$?6Zn8oq$JV_uaPa2 zD%I&Dsr^Xm_%j)@TndAB13_~M(tLq6`9LiKpCXYoCSXpAR74(TN;hLf5ouMxY$M+o z2u4~7c;#vzQCVE?F0RR(wK6=!}*(T z`?vFxzk7QW(I~N5vA75fD-tDhkU7)%A`!-?+U7Y7#+P;hKihWo9ROdMRRBS|Wxm+= zoYN(f!HsVMuW)S80Y1gu^F-P6PK!aK>G501SjaGFcX)G zi*H_VT4nQwH(1J{g|L0GTnDSYH7|@qfN`9TLMqM#XQUSr`|{cIaO*s<=~u2<^h*N$XRh-7eUT za}Z_b&6~#Waw-k~g^svjw^QXTgYaUwE|V8y25*s!9PWZBJ9azgS5IXDyC$iENhrr4 zS&r{v(sq;O=vu{c+>Yosz;(_k5KHzrBb{l?N3)C)#6Xcz@*?!D#q(0)lRZxR!uOx@ zy4X#Hs*4@3yV#6v;>Npk+lzQnp(U!X%gkAIPi{`Bq1xOqnZGuCuL z=abP?-T>&4@uBDG>*AjSkErDm(-VeL>^f#1UyY>y(wcWH``y3Jr zZNi@f1&hNS!*kGLqtO()(@yqt)OVDp_=G!`pNCorMt`al_cu#9O}vRN+-ScDVM0!V zhR53M=d$?$O&Yq2EC6Dq^AB`A*`i>-*^x%TIXQxWAw zbm94SdW6j7l@)2ARn*QQkxszFn4Oe3UoQh1c2lBJLzP z?;GAIi##>To9M!u>|OAgAtwXFkIDpQ%b`Sgn@nI{l!q6FpOkrA80AHD;b)x>VlbFa zj`AkD@J<=&be~^Onw|pfdm{=9_NhB*ime#{deZbce3`uw#V!DEM8Uy;H=^MC>WwH4 z!-pdZIiRQ@@9R%O3~ zZa$h)zt6|-SeE*I0)H2)-(mbVi`4ID@H-=0{oaV*R$Tr5x=8$aKpkZN?)x}Z@R}mw zeBktQ$nr4iLj~U&YQcNWxA@wYVhFP611HbUqrKKszC2&x51dy2^M$G5WF&@0C6B8MXJ)XWsN?FwSrVw@>cZI)sN?Fw zITEPj>cY7eE?)JimCIt+KWIP($zU%f)L{)n^Y!u&e;0MkiBGQJEaJSNf?A1v!0 zR7iM&$#JgF+FlB9j08ceh+Wok<`jeqTc=>;5S}Z2Osh3}k_8eZtOq%!I@LTM!Lodr z69TI~cKS6nv9~%c@EIPJBj7lxlgk0Ot^3twu7&{lDx50;C<%WclDsN?OzSK0jm z)bV!V)#f+=b-Z18jd=oqI^Hh4RswarUHDe}LiniT?ZS83Hvu%M^X|XDLR@ueYjmS5vO3-_y2*YOKI(Y8=%X?L zb!TgIn@m8RZWn!0=24w)7k$?G#N?+^UfLSnDI@9Q?Qm)9d}u$7RgfbW8F6WAI=Wx? z(pDeZmUn6Ec693Mj5}P~`YeDt;|_PW?m#H-&Q|sj-kq&{uX)5>6-bY&BD_mmoou+Jmc=v&(#NX-WN{(RQFz1-YpysQehccQ9IHG4M^V0 z8cnLcN%AtInGz^oW;9Cz#mkIlOQ3j}(HsdBFZ1Is{>ID9_|oNN{!e$XcKgy)QeWuU&0goBJ+cr^-zxkn{$VC0HY zan$$DME~XG;{NZQE)(9y(-U=}Gtf&9!oWC7wl@CpwYUyXPIL^ln1#+i(Js_-D1){R zo#F+Xz^+||Jq0C76o*RusK9-!TJDP+3+$E_|fU=KcS_l|ItZxl5?^~pc4btB0x3WBxJ}i0wW_ZF^tjG z7qJG6z=^-%y*9>F|4}Y3Mbz2nAm}`}nz=YO$_NG$OOV}fAozm9H3+e3Wqye%}S>^RbNGL9t6284Q{!J+k(EV z+r+2z|FXF#`o&$P{oLP!@%zBPCtUTfC1Ut5_-6P^#W`M}L+T;(5#V?oXu~g<-F>RL zc-IT`mcK7kx&{HR)`8-`I<=uk05;twhW+Xcnt1~Cv&WxgZ5E(5+sfKp0@GC0<{p0? z)7XP3JDJ7;Dr=8_@L`4A#}dwh|FLl0Pdbr77B`^#HI6EKsfD=V zH>VgXEy%4^lPP197{0@dx>btN3LduV>RA;p8Fz?&e>ms)-z^h6{%}(2oa&$|{7U#=09Pq* zQwsV=@+|Cw5WG#HyyYb5KbAGs7AFt4hO3mfoCN(RQ`iW>P`I*nrJ~!PPEn7O0p`Qi zTta0g{nE<534$BpI=*&YZNs@JZ#^cuYWAOj3BNqQJdgch_&#{2xcX0Lam^|!_(wx3 z_|~!1T-Y)Q3jD!mI+m~eFi@suYqCEHe>ir*GX{ax5w4PaHH05U#oPtKZE!W)_~?5L*?GJT!5#`9!-}8Lbf1!T#Cl{4 zxH1Q}nsL7p8b{Y8`08vlWOsEX{I7tk;d-6%fRUoPunB?(D6C_z^`Hv*H3YB0`TFc& zd{9N$4C>HOS4%y1E_Sm&Ws%X9E%o3%U>(3!u4KzvWDI2fK8E`eSS|%yA_J^PzuID@?QiDXwf|JFJKx%qT9$VcQ z^@Iv!6<<6&VYc^#F-9$wwF;3}!c`9_6F&!1tw!!+{q|S!%8_WTj8|Oh=B&Tbi}AK2 z&NjxY=6liK81^|j8Dq41R|gvMUHuIHht`Xef~m9oLtBWif+@|*>7dexZ$O>ERnLuz zlC)GRRu9k_uFPmD`lh9NH7%l=a#d!|yP>vWt<22iW^QJ3m72~(oKxY{OP^~D;7h+2 zg4Gntmp<1R&t~v81g}#lU;13*cnTx;;>!)EGM`eJZwEnDOZ=%>wiqSLGqSP}bT$Mt z;L0vxua~bXA+TaeQ(2GqMf*_7smr4NN(?!4U51bsGKqftQkN>>1_wwHTa=aVCVZ$a<~Giz>j1% zLj4uUyP`hMVBH2*oYyosubEgAPBm*g0fCQ#8zgo3z0~Vjz^73*zY|`&AEfLC;A`&} zpNCUV`nQ&e`y(kQM;7im*}HCs_cpj8!%M}xkyLKz0KmKVi{B!t(}%61#y3dyjJc_{ z;S#Byrk1XHHb{N{gb3fM6c~C4i*1Zn1-?%f*x4BL|=FL8jZSEu)c`I_D)=u(Uxj8sVMt%Yjw!#gOcX*uCR~5?F z|9igG6J+H3@Z?@fBVObQQm0=c;>R0TWu)@+x;_Aw65OC^jHrg!6M)A(AUb8F%Cg*R zA!w=wwjrHHOsmb!NEKGzgly9JT4T6?{$Qs!owfv@5Ap?;kHXXOuj;Va^K@?ORlmma zL|t|2JaNVN)aX8%qRlz&|H2Z_R|w`U@jQXVxx^zzoS$+!YeM#azM#Xnqf zAZEwJ)OgD2`oG6d3jDrL+#gS6mT~qAgln0(BbIIyR($K9C#2Lx3t%Ksj^o?##gwyO zV%i0%9CgtG7)Y-|mF`MSE^T?2Z_NcbZ>44&fVWaJ8^BwsIS0VwTN8K-HP}V)*Fp`d z{;!3amvPk5Un@1A!Aq{x?4O9m0nI?7&|9g=hC%DC)C>pkR%%WI@K$P=FK?x06@0vv z8v1xEH3Z&D4S}~(14@xN<>-`TAYFfS>S=Ym0vJdyBC*g`{J~0%n3job>UEim@m6wO z26J}<>{|fBQQoc)9%OF@Fr#{<=4AkHrG`GVe(N)2nxTd5)NR%*V9@^%Gx zsm8>I^gmvzNy5ilsi^_rN{wirh3xBfnX4e=x{RE9Bp4Xw*DHLbY%@cndZmUw-bxKK z>8;eTEZ$1Zg9zrW)Ue3jN)0C%ypoRvu zNp;||%>F4Ur$95lKHxYgOEbO*$oLX}BKba=)!qv^@Rnu90eH(YrviA(GRpzHWtrOm zGq6j97Sh3lhEQ(;Vh}DwQn?BbWEx3G>`%aO#E0rqdWXlVwRFVJD zX5!OSDzAydzKCJO^3jQ2j$ugh4HPX|i8}TbaK1Rv9)aiUTuJ zPM~m6xp)&^{#0}EC;l%SiZ5#9A(_lQn0Zl|z6m|4uW(-r(KA1ls@+Oe%vL$^f~W`4 zPKX?>GVu?uKF!4P{8UyUKb(=?GDwx>K0p;=Z40p-LArejV=Pjw)G+1mVG4FLdcE>H z%kz^@FTi|KydYKH)Q!Wc9?7$zoPD>tANGR?TrBOK9(7dBLVSGZ!Ij8KfSx%FeI2lX z^A&x?B-+bdZblLqLSbw$EAA%IzLrTmj-XrMO66#?{pby-TVr&YKT<9pL_R`?;P=r3 zVt+v@uX+y?Y$+4G6$x@&WUSfjCD>9X_$MO#3Ri{{Dhg9&P2(6VN5(oGv0BMksuVdj z%tFnB7)rtwOY^VxpBYG&XBPC;r#04Q9r(HvZotlq8z| z&L^qFL;lbBB(OtZfAkOh*Z3qp)Qh_d>_6j^$Thhm`6U13N&h#W z5K4X#>&sFv{5PotM$G?3q>{k@#iSBxy!?O5DQPDz&Pkc#u@v?93 z>H`0Z?2^Ffbn$V^znL)^75}LjBRM1f-YqxX(<+r4n0z_sin?X~jt^m4;Pj7hb_h8l z#sG)hk+i^XA3onRk29bq_N?W=MCgsLQ}R`GW=WahJkEogtCinm&#z?+g~@xQSd>(y zvYTkZn6O|Ne}xxD#?Pk(WA2n*_j_JkY)lU2XD45Nb2~`?ou2<)Og>+JJ!_=b`>vNS zpC*s_rj-7!qzJ4sn-7!c@haFgA2t&Q`9JKONLyv+w8j6@&M_a7an~i>a;~ABlMg#* ze%n;4iFS@TTRqeZqKZO0$2?j+`5#`K*D!}muS~4YNd@}yIZd}=i<+4DFgDJ^HIt@BQkojQaWN)xf$NX=crz7KT7z69cUWl);^*%?3t|(dDiX%u zrYTIllYAE*;Wzb8a)N-#X*TR6=fi`h-fQ(U8e7=JG{qIT?!Dm1X$n*C8)w`c^QAPg zpg84#ZYthE$R;@{5tUoQqjF1lRBj26$}Qnhxg|U*w}eOKmhk8i{2UkqBoIk*={o%Q zPsydsr`j_G3u3rzoWXEda+*X*Nh+fx77h)HJdY$yy`4(7u=uf%sL6|)YL1w^$Us$@ zdb4;V-x^bI7GDSuH1%fjf!ql6^39?MRS^Omc$JCp}4+9jK zdb4;;-V$l*&En0`S(KZ4vpA6z5ZWgE4KvQoPCm3q#&Ef=&CN_)j?U0hUM5cFi=P|;Wr6H{P zhrUNroX6PTNzY?MI+s6*mndj*9wRcqej6Zcavmcx$o?9@G&zqEX|!W8>Wi9;jFmoF zQj?L%GL9oP8JQ_Tfl0<`L^DoJGEO6!acYur8kuW@1%Y`Cla$lQe7hggt~5zGjcCfL zNy=&Dq~am)>1dL18aY++N^4EbV{GWG=P@GZ+AktRUs*wsE`x zG%&eMKRl&iFsc#zf3Qjvo>~}^mBV=q>_;+X<#3yRczR6DW0=^dzq5;;$Iu*KHIJb= zzTP}Wc#i5S3^k9DS)1z6nRh~l3j=(5Xd(W@D#8_!4D@g&XEwrBb^(5?nT>F@1VIxs z8;fi8%tp9t#+e9_Fu7kpTxW9rBFp4{{cs=qUI0fbEIiPD9-zSFe*N%}_S1h#TutdH%d&u?6Y)ca)2_>QX5#PybMd zZ}OL|MSc(Ujc(xoZQ6*L_`jBO5z&Wak}q;LK|T&#MmZM&ukF(7kmuE$Pb+-6m3X2D zQs2>9yoLV<^Mf26E`xT2=_6C|74m}|?I5LtJ!yd-^X$>)suZ(aaq<$j&4LKnD)lG@ z2o)3Yf6;1|c#sPFs2BDyg8DcUv9dl@UhTto&sZX#^2BPF7&8#IiWCPgZj}Pcl zxIFM;KB`aE`q#G>B|TG4x%~K^)R|%Kga0~yXysJHNh3c-QH{~%m?xOjGgUt14S4N^ zYuOiT5iC!sT-Ywv3)@A_n2%#+K7K+z8jwe0%{W*tDj&znXMBeQK6_Z~=$Xn3)#2OF zZId|MGgVPA2ERwawX8wnENQ8647WM@iZa`Xb`9v1WJX6-GovRX;A}WGAu*~a^>G0B z4Y=0QN;pbd2?N`FPlIEkd_Ai+BXu|&P0oyVkr}-R8O4F7$Y>1agvw|anbBDYIvK8+ zyfVE@fALI1${w@x5KrOR#iz3L+3sc z^u-?$CB0JFg*h1P>*T0@^1h^o0be1%J}OG+puJI_t6V3pd){U5Lq@Y8PJg# zH^=4)IG`glF6qcrayTfHg>6&V*R^e8(zc07+a@M$o0zn1V$!yWN!unSZJXE;whg$) zKO!GVa*tPHu_S}5FW?@_oMQDQgQwkqd#rH6mr;UKV8X*S4*N37yBgxbzNuV!?={HC z42XkFk(9D%4)k>`8W4lOMYY?sXh00^j1RTX*2Lhk0707;4T!;~0)%aThd~Uc1);Z! zt}(9%&|5{DI>3GsAZ*j3i4L;&0+_ZY27e8ZkeUQBm_Au@(=CX>jN`~n zw;%=+6xg(AKn!LDVrMOk6A*(5%57RSAO_oH{8pf7K=bW3==dvbS~Oq=vpH7Vv}nK# zZV#W1HZ2+ugGU0?+OTN8VD>c)_yGv}$_k1uw+RN?v}mGN$_Ea$H8GezjdCk5h{4R{ z7@HOih`}t&c$*dth{3NQ*d*C_Kn!M)r`oh=Kn(r{J~M1uG#~~e0a!H9HCWZ#WD4_a zS~Oq=Gm{H#S~Oq=r{f!QvQ3Ky#9%&ETQrfJf@@$wWJ*qOWOBF$-*}rAO=L>$KsD!fepalGB31fB2~5@PxR$-ttL_}LC}UpvlS1N zYc-Ls89Xj0Vbh|C)S0IOWZAT6B7N+u0UW8Y$UysEfC8HqO=L*?X@C+N7ESIDWzl2| z)fNp{zRa}GrbPpmuPlL0iv}!Tg0M}C1}t9!)22lOmM?)?t2t}v-z=J&hPoC_OjH=A3xu-h-OR-W=uD9 za!U~~`zMqmo6q(Y(Ts_~jG^E4p5G9(1z!=&nBBvb8FP3z%$NhkA~qtGa!6l`eJrCy z@pY8R`HErW)WMfV&bSfExLM5q!SlI^a?CPpWo()!vEefImcL?u-%@S=W zIhNa~ZI!R;_3pk{&V?u|!8W?G6l3rKYlLe)9EJ?S4`iu~(Jf}+3x=bWqEDa?J{$gL zJtAIjOx2A%NO_t{wqc#ivRVMcKqZ@I^k%Ya5oL{+Y??9h$Yj%1vd_c+*+<0mk*PZW z<88!EBV7aL$G%MBGk70@tCHNAAIG+booI}%0vG3J+A$97QW<)kM~3aldeUCj&KFApH3PD`^l;l>qn)WHqtD)yC=gO2mdK> zZROW~UCtW3!w&(khx4_A$@mo_C_2oA-5KESOruzx46xm{jx7 z5_p}nMPwh9I=ZP1E2*_qLivW;hR0Z?Ya(DTDkZe;$ma`0xDrk=yjnM~S9ucnG0G%2 zskN-NkAUB!OmdT2PiIYLZiU$cS1q|om2o!yp1|$l+AeEajOSHJ3iw(GR>LW7Qd{}H z{>4pdm%&Vto76TBjoPS|{_i6ETW~ceAn()hw0~!VcR6Ghcu75_$>84>^!j|Xy-xQkFCTS=CO`(B(*SY+^DK!60p;3n>{r{apL$mDhD^iYFKRp$0A=jVUWyWAk zr3I=FV*QDGj*Siuj|E5zJotfJe-dv^hmDmi5v9vhd8s3bGUpSE^Vza-ApAK}Hzmdie_e2YYWG9!0Ue zk9W@`naN~&GBeqxdqPMcEC~>@K|%-+AVAnxaRKGBhysd;D_1b6xLiR&FHopaQBhEF zxhjHQTmTm~WtAOd6O=_k#TE4Xo;p<%uAk-i|L^(mJQeyqwe+b|)!kL6Prq{;En}L< zfRyR*YH+0KJmmBHl_oMEk28EoM#H1jMyhOi2-?V#Pdu)l zDnmgkP^{vIPa|bZ&r62%yj+_lBSA7{)W=z5o<_=&ksuAE%>E$GNJGL) zq09z&lo^$~Vvopv_&|{!k<-;9vPcZ1B43C{`9du6g?N-N#G(a?NBKf5@`ZRJsejUw(}FK#;MZOSEcQ<`ylN{&i9sdRn zg5(SF)cZn$7vfp!4@qB$MZOTv8~zr!6mu=|g?Qde8UoPVqPIJq z)uGz~T3X}_@vN1_3N7-5c(%!6r55=@@T1ocp;);^z7Wse5W-81N{f6UoyB43E-j4ap3B43E-oCE_b_(I+u&%Tgj<1g}s__3+;{Enu= z@P)j0UA-@4EmnVV7QNkpFXS+Q*HXTap8@=q@`Z%33kXU}!WTk0snU}0g;1S{v?P2X z1Tw9QeIeGxz7R|KLW<tbJsrF1Ip$Lg=jZzL0ltXA5gz$RIdIEaeN4 zuPQC&3!xV}ahCFhkSo?}DPKr`=?k&wlc&V1?csF2S>)qQ94ogHsTRepYVSz!FW!;h zU%Vqhct^gUXqRNt`yO~lNFUFw_#?d|De#V1_&&Px4T@kSu_Q$Cs$Po-MiSeGh5`63 zie!a%WI905Qr?mI0I8Ppjw}O+NE5<4vI!v5Qr?lH0NED2BX8fp-jSt~{^A|6o^WI6 zly}6s*gIlf>>aWGi+9Ai@jtvHRX1wyNI-f=0`=aJ>u*%vkpq)$`Em0HH`%|rn#o6T zMoK(3`tk0|;1p><6d~rlX2c`?B>NB@l2y@A9K6+b+R!sNfM8Ynd}b7Cq((4i4|m4g+w29dHwr|-?RdV*9r}2)np*6JM@|Q% zCi3&G@#bJ^3cd^ZJ>7MtoB`90nBEPNJ%g(Q@p(@kXII}j`E*4 z>2J0cBP5iaE}3Rq(qIUx3_!}29)e7>hFk=HhhQ=Z<(59vyqt{mHUzJeQ10n7%?Ttt z0>PI^E##&?%S@(mN?ZkxgNZ*)>3(81H08Fw3j`gJ^5iE+*;@VSwR!kv>xRGUZ?>A4 zavOd%N{*x^)CD!~M-)wzHorYtLv{xKPJ4FWXQ`3LWg|gM2mYRLSFDl8yHFzy)?mgV6`x9?()|!hfQy5htdmXF zAh&vrXk2Sgah)#^Pt|G%)r@x3zyxGpLk-|N#*MYM6P9!JKIOxCy*3k5^_N<^S;AZt zdUTCwG96R37tQC9QngvQWL8NNuXA+&MwU~{uc5+XYPkUo$jBOsJ~0PpE}~EBMh9#R zI9&>8A9##9--_DOn+2LZJk3ZJ1xGRZqI3&N)<1&{ssl| zr2^&n7`2#|edcBT=pkVaDu(h;-DO|pda||n<1RbWO^#@1X}Rb}aYhDG@dUV^&CY${ zyN+3|tF&A%pfSVXg zdaT>k3(doj(kkAIM;-k;o%4T=E;13Kvj6W}F}#V?Kg98W--`X;w_^YIt=L?z`2YG= zOgXx;*~isX`M3^ZVQrtKg>}C2agBilG1mWo^l^PkkI78w%sTdQB^6Tr7N6juh{Qgwq)zmzWdZOU zB=&Iyq>rmF`?yk4PoltKWFA0bA6KfB`96&^5|FUIFTb2_{eSL{JsoGl6+%zPZ1r^f zSCi$xKWg`OyZZP<&3t$pXD$}k&bLRqa=#Lv0T1$!4=6jG0v_T_$FSz(oxdkXVcW27 zCD%wJg%LmVB)PsCE1ZFCC?WwoxeBKn){MiVgRrw2y^SBH_B2!SkYRP)3EW&^#NEVM zVj9X7r;)>~g_2u_Rfqkvr=`Mv!+MNxD}|E~pA#=WL%nc(BIJcEcXCwQ-YpbOC)pnj}75 zU}ueb77H;?H_itGvh@Ubt3BNnjvCe>YOjaFI6wW?uct;~*z;xb!Sz%a_6%4k-%DZG zGx-bA<1yH!jO^T3$x{q#3fZrp!ePT2L-qPA4EyGKgm}#ESUU_$M9&ZNY;dsMZO!mK2VSGgwB%j-53WH&@AAZT*bGgF!9iuPkS01iV81^|pc$mU? zl{@5de3AY8CNcGKbi%-T-!oceCL7k*)cG-t<6-RAsgqYL3}voAC^kM0W1rY9%qK9& zHRK+hsOm#Gd%q}p0{J_j|S;8)^3 zPbiETXCl7FQ>QQ@U98q_G3QB)LN?t(7O4yGZ1_F_s;rT*g7^sTM z?@$;9I!!mWoeIN1-xJ=YFbwoF;oSH5Ke=-H<*hJ68@ zaKFN7hV>fV;SVT`X>gY6f2lC;h~E%Cs4%9*5<1}_g>gshLG2w@I9P31-;v;m65vAh zlckO-j0<%*jlfq5V}vG=WsfP05t@)BW;}!WE-m@3l50zTr?9r<8HKea&nm1f`Mtv0 zl0PV{E%~Fu+LGrKj#=_2CD4}qSz&F-Uli7s{8eFX$=?*#mi%2|ZOQWrYfD~GIM`iT z@((4@mi$xUfDx9K#K+&fs<4c(G^MEpej^N9COv2OU|S~YjD|*7PD`H_WEo*OFO#&O zff1Gy)2{`YMp({FOADe#SWeA=7C1&&&dp>ku#K>soIx|amNkqRVL3ZPx=4l*meVt= z1?fgu&d(Grzz@L737V<}sYY1N&@?SbF~V|+rfWgi2+KK|p#>r1vap<`5iJQCVL3}} zEl4)Pa+*3?psgF#0&U$)Enw>|S!CC+b#rxwwr&$G(AI6L1=_mJv_M<8xfW>a=4pYp zZoU?1>$dnW)@`YaXzRAp0&U#_Ezs6&tp(b;g<7DkTcicry2V-$vu=r&XzP}0fwpcN zEzs6&s|DJ+Wm>@2?fwF+iyuNZJe_m~tlOS$sa0A4>rSS7VrMOYbt~zf)=$AZd5&V5m@&*x;55l0jyg}s`k_ZSob&y zdT9Zy8%KiPS^(>wC*AvK0jzrqou#i9kad3`<@;#~tlLp8O0@vieS>rzparn*<@A&p zs0Fa@HnPYdEr4}DNfbvH+cmkHkKzG)qsqYgCft{*PSz!1%td}NV2PdGrjjgli_Spz zTT+|1Y5}@`o~qua1?c`FOFU0if2UsmU1fk*8=g`K?$9OUjqpEcJf>;^sE}I3i{F+& zzulBELuKH1A;UwculFi}7j1o>B*wmI*Q6{Ybso}9peM5fV%3ZG1FqZsqW4R7aoc8h zqd=91LP`9QJ?#Om^3bn{1tSq!@GB@mztiIc)d|=&+?1zFWakY92(iNW`ORO)9t2&u3qX+P=3TPao zS@tZ-8_#Hty}%L!mfF>>7Xo7bQoE1qZofFX)XsIiutWG>v9oHYV1M9EQ;!WiabLsI z*PE^|)zIO=A6JYoO2gHKc?UF{c z{r3)IIeqR!+kfwHh2eI1elvdd6mAe~>#cubplEyU9jn@>Wj*P4jl!rO>WViF*D5Tx z=g1$YF!W8@g#7W0U07Ptw%t2H<*RMG_d124|7o(<^$LfuDxN?JOjH6Wcyl2dyn!*k zwYF$K@13Ob)qdW4qrz%GkDrX=b&T52<5%MtV+PZH-g~pcYCrG2MPbsIHuTnAJ zuwRUN1D5=qE(NuhCP&Jv*iL%YUOE*g#$J6n%F$l^)ElrU_U8UKffpSTo!_*(x;pF- z_q}NkcHO>1>;(?fUfrv9iL^l*yh{|mh5gMMI*-~7ny`2nyGgIw4VthxZHK*TH)z7* zv>o=U-5{pAwPmN6^A<+Ziw&ChP1O&yzn(6^w-m+ zce%otndBJru22~L-%kD48$QgGH^^@9s(ji2&fhIAS!Q<~^$BIHRvA#_2EuC;h9V!+ z6wn(%D6)g5jNS-Bk)AZ-dLsx$I^hoQ{j^?@o;$^F%dnw*hYX=Mf(f`p50L@%Mi4j4 zBUDds1aY&xf0yX>HVn0i46&Wtqf7HPYUc~aUKscw8D@t%9}L`;+TE!zCd_2gcbCGL z;t$ab)*C;X;&dy~8$aA)+R!DnSCtPMqpdw;>3vFo-NV~7!g}L}eb|#!L2vwUFPaaR zl~-^4(9!NRrS--S9leca&>__xI$F0&+_2p4+NdXu;5RG}>PzbcV?Qp96Z^&X<(RSk z_KCz5n8Cw77kMi%^Pi@fsBe?6DmKRy~7A5Zf?d z30Xtq9NREp3Au{;9osNq3Hj>h^WU}0a+{Oga`ZX`C)-Lhv5{V}VBxg)OEK(SyT-Nm zfO!60JG=YUG&N$&cAR`YH4$63p0m??EAQc6qN-MR79?lefz|LJOcFxx2i7(*oF#{9WFWS^$;F;pH8r1sFN< zczH)_0s25LFYg#Fz|MnwUf!#Eip$@J z>YeFg)k|?2+>dE2Z&xL0aHo-AiWXpS_mg4tBAo_zF$we{od!3L1bUH9gWHt`cbaYk zgL|F?cWTw$7~JFAMT-xhP?QGuK2?+kH%gYeUkhL<7Y*(MS^y2FlKKCk1u(-B8r%o9 z0E2s$26v_wK;|aii?G~w` zxFLrBu}$Q!vM+DbkZ#PcstgbIjN_?|*Ob7GK0QE&d0n3c8^XN9V#O+S@&&rbzoRqI z$$!(0?_DiGCy!8xe=9*e6ugH7E46^80X>M`Qv#X>5jxxZx(%HE5qi{ppanSn^N7Cj zerTqP+SPVq$|JNySf#T)M!4y2@x*Fq_aF_yI-LRSexh@)*8*raizfUAEx-^Aph>b( z3oryf(*S>_1sH;nB=}qjJkWm^oqm%p0rTBLg3V@nD_*@}mQ1E;vqjgzJid)ivsKse z8R6osV)hz4yLJSP#TPmQeeqG>cW42&qX($OPA$OJwjbTycWD8(wry$F?$!dg5uQf| z-J=CABYc8p&0Z}q;m4bRUpC$cgBE;b7uB98s~pzZu-kUB+Yv2*-A1?DitHdQ#Vc-6ri5 zNgu;*RaEy|odLW3o#ya&S^&GoS>>!2z;3Ncq3^W-c6*FY|AQ95ZtJPh zAGJW+?Hug((#PP>U%pK=`^2v4K8;#Vbg88b>=&g=&!+{jpPST8(gN78n5y`-0QSq> zB$iQINpw$0)fs4ODh*DW7ND&tX_>ACXe*r>&(H$2b^Yg}>!)bzJ-X5w>I}5CobEu` zT7b4r($vk-0<`rLjanluKwGyQ5nHIO!!*hAbq3mch!kz11!yag8gHouXzNy*%B{2j zZ9V1y#l=;@M;H|ddnG>ISa+z*f&=|uKk;MoY!JW@-2S?I~h zA?M3c>c=zELsA&o*bCRiYn~m*DUIxo^OI);Kp*>xBcfov-Mk{1=5*NfENF^A0{e3^ zc$VoYYla^(vVZ&xsF~?`4rrl0zZ-g83hz&I1hCqF91(L+-?jOOcz3<+v^+ap+=c%%Jxxjs<7<2Qw&izj zupdlH{+jM>=UwjnYS6Tl?iU$5?Wxh(4BJNGAk|t8Kb0Awk9GoS61XDt(M}*;0(XQ$kOLWVu;L>0(M}+e z`b;;d6?qYpEno*01Nb8p&K+=Mv0#MA*#Zp%+t74sgg)a5WXsmlBNWdW$f085)?GGp zxCR=zy=Wu%Yy9q{Ck_K=1X>2pLz2`xgdbW?+Les>`K0zZPEFb!bQ@06C`g(oy@BHa zN%L@gd(vabonrV@_4a|z-BDdKzx}W5D1GApCwi1XcQ>ivj|=pU7idhZe};Em8HL4gJSCjtBs`Xne&=YJC* z7@<#s0t+QbjnF4SfkmOukQ0f}CqaQFwV~rcnGyOXD6rJ;=}FfteG(LS!=D3?8=+5v z0`DdD0%#tgPl5ugLlXg7M(C5Ez*T7`Jhk_#$aAb~6L;a1UQzumglJsc(S6JcG$+oY@)8R^tL5EW&$ z00>4lVg`nbZJHpda@K}R0V-sh%_H}^0ou#? z+%hs3e&lea?_<W1xy70NcEdcWW>;A|4w^yDY6-j%sdG13+aKxll_)=87jSXq z>*M0==u^c9q)~rm@!1FPJ>(0?;${4wY^LJmm&lW+Mh-qAwjZ#YaQ`oty5>fP;^GKj zAxkum%)~Vk9wtFvWHRLpmmojV6<1#PN@a&6w!3_VSss2W;el8&I-OA*M`xLr z@bq8AcaTc668@#dMnOWUn1yx*yh`odCe=S2%PskW%4e7f=juh%sbI31;2oe8Gm6_m zgkK?aVv>S}#p2vyyLri5sBh+kNT)06bKih+W@C#iaEq2I3(PAO1CGD~dtgnoku0+8 zFGa2^7ITi^OPXHPN+e99b4(X83L2G&RY&Y5m({?8<~Q*;h0z?JvgYG|vu@cy!)QaF zi<#fFqrogjbY1~c8~LTnH#MZ^)xeh{wY~1@i70mk$vy;LiB$Grw&-}&cFJ2(k59>q z>LBC?kjiJ1KBuMZ9PkfF?e>!FHz}(!O1qbcIY;pYp44DV1!>@48wcJet-+R_bhb{w zB}lBnmSH4&9C$twG(d}6#@~m!<|S?97dBh&rV=ZWy8?-I+a}L>9QX*yq;A`#%)4$F z!V=d(*qAzTSPB~gM@c3XJ}PC`15ZFQN{3OwPvqSAab9^9mKd<*&tO?)TYgeSJ(+=` z)7Oc+zq0#vY(vBTj;w&P@}F7v5I*PS3h$Iqh1XEwWu!9s8O}SMUPU=`a2dYB2^_O8 zE1gU;U}-|ND6hf@!eSEIVP})OSJEdFKw~^GCjIo+tG3AhB(8IR55z&H7Gso z2xR8q&hi_l!O3*d4oB`48^kRq?d+5raeM<(j|80OK^)B3AeNl8Cuc1?91EH4+=fGD zA5bB)`%9C=$jLcXBKej?kElImcXZ*$LO(cVk88R6D`;3y{vc^KIPmBULS3+kHOwJ_ zNl`*WWZor#rESEJ({^vyeQm@ur|lfBnb-Z|nt1~*u9-KgzUH^5an9T}qTpM*HP>`5 zk-0XwBPP=SzqAoc=>I?3io-wJlU<$LilOK1MpdVvl6hVA zZO{N;T0H_KK1ra5W%gQkWrIHwabH+nR%Oy3FBO>--wWAU^x^F;bZo~4vErOvQT9EK z&mb8MspLktVLXdsj(LU0T{F>L**Mbyf24P!V-Dw*9rMa~cjiQq_Y;{-6(rd8Pkzly5vt zWyI+W*Njl^wGcjx24*4QWK{VFs!V@m<&lX=u$!z*vN)ZgD?f*d&&bLRDQjLT+G&Iu zFkQUc|G~OWMnnH5@!HRJ6DxQY5&z~@W}#ujB8PsqbAlvl9LGW<`dnKP{>5%oc7TSo zWq^is1)6>vsZj)z$t;L`2Wxx=ya6dEs0P)5Fdg$|!Y}rqgu}==xKXS@LkYj)_}oTu z@)tWN$^H!Az9HEsR*Cn{frz8^ul7J!qqgGiU+u=3Ic4B#$cea1VSpB6{*IZP(`g*e zZ{$~(iB-Sa)mi6`#U}RO5mP}?@n_V;-qkrtm|Gh*ntwPWASwnVrHju7_-%3bZ}!!g z<;%bM%}#OAitdl|_H?_b+-)RhwR#X!%o8^Ue*>Nh>_2a>5aI$HNVQNTn4Y{Cr*@A; zMlc#&h2yl98!(b(Rsg3>7wuq+iUc~wB!mgwO-a%<`YW1CeurwA)!z0PiKHiSHnUp; zIyRD)9Y7o1!yltwTvBc&a(aaRjSO#6K6+%<_yVSA`-k1A`5REe>|>8Xt>m`I3YvYr z_$?MADNN_-7hI0>7)g!G#q>YyCc#TdI0%*LGxB7oy;$~#T^1;%CNEF@1J&Z)5%Jp} zc6MYZN`^ZnZAERO1Wc6eI1|f7@t<}xS4lfD>`$y2dsc|4f7%mLmtz{FR3`jNC8wf_ z;ozR|`=53XSEu&#s-13?o6)&&_k<@fQB_lk-@1*os}f!z37OEa-$PfzSIASYiIuZ& zZ8z^@C)c&&hj}NRjkPCWF*DgM3vJ$Rbom?=&AM5bRgLcAtgiFW<93)mMM#Z5V&PCa zgE_eIOtNvZdo)!rhvaU=kGGgPn(J=(7L2?Pf?Y_>0(pjU3EGIGKd_Qv7P>=E z;NolE5III(F2r=V%PYab$c8u=g@c!IGswRg2Xk?77^Pd#rF!j0liigq==Qb<_nj8z zm9ATnah2;9>}&5v;orHS>n2EX(>jXMM$3O7BZO|E1m_J_HT@Enjr(%D zXzg~=hMoeDid?_}DMCMkB^6on7d_(Ledt`Rycf5sgt&reVtC?CV|a23D#hb&r%7wq z=W)hwuus9`u*o4@(Acu#U(?A~W1aDbE19NWXO!uL)H=RWeCu|cgrNXKJ{N&FCnsS7 zj>mm24q8r*7?JE)jUK1Ff_a5mB>T<=f~6KtB1_>`y=bDiH_jQ^st=9wk1jcp=#=!& ztos;u?M5GQR;N3m%WSlN&*vf~-YH6rH8$hM`o=DccS`GXE<8cZSHsW~w zX0l?Y81Hea>J_@UtM7aMr>-V=ok1>G_6o1lJ@6ylV^+8_Y3y>hi&wo)#&rYmq~t;U zHxKI9IO9=L=_p+-D_!zVmjpKdL?rIahkxnJD(*}!3S=Rb%7x#0m$@9%vRMVLqLDZ- zM{XBIiB3vVe-!D9RCL{T(Ld42ti27nar8%CeQR9t_b11$zEX(g6dyo^FvT|^?|+{~ zGy_K9SMSlW7Ooo&x9?q-kv9U>Z=q}U791RI20jLE$90?05A%_Jt~qapKGy;q(B;%3 zs4l1LZlFf%FKgAhd6nC@293Xh@_U-&1MUxTAXddWsiKe13Axs_7bAR*ogtqRFS}aN z&FCid{2HXj&$bh@eNOX)JpjA5i1&O>@qa(K?xg=|aC;|VP><7N=1IO>W^5HtCpmV_ zIkb5iNnX6yh3Vp*6dUJ-JkF)~4as7p*78>SJP#r4khfr~GWlCu=lh-1(%8jy(Iup8 zOpUUQpN1J$qaxY3XyaB<<9G60J1WFYeq3Tbahe`m#Z!Lgs`@To)S3udPG_2>gDt0> zE4flUY@yaQs5N4%cn3F-glBQQa4TH~6|PXZ$P6HVHDvE@6+HsTzkuW4WqyvB9dPWi zzmQd0{q-hN1~P|6?QfJ>oo~i;%h`tS*pZ~6zQ8Sp?{c}<(v?!=3e3fb-H7}NNPLwP zv-K81P`6D4lAZj7y*S>zEq14i*7xz^YxLpdi-!^IVjA;ZZ%49oeQo(Rqss{h&AKBQ zT1l6yf|PV`hlc^@kV^i5T-+;TqnW_^OhB2@NKJ1THQq2it`IF5mO!uwi7&|JE;EAp znb!+vl9$vN9MC0o4p!;--&|7{X|KkcPRrvRhw+}G8=AXqe#l8}5t}G0>hHq;rDD9x z$X~QgbP74?Nw4Y#)@~Dj`;QiW{9jr~LJLQ?iKjzOTJ}QuJR43=%)DRF+H!h6`_W5U zycA_`7u!QlZu2W?6}8v2sPsB%uE$yVbpB_F@tZYCW@DWQQHcSqF=Kic~<` zpvzG(-aQxnZgT1iF(m91w=j1YUD~2b8hGHF-VWE08KCFq0aV$CBo`D^CeGX;{uOr8 zY6Ae$;1L{*gknb`^1gz5kCB%J87(i0ig6%sI<$~DC7<8JuyDBewnG&Rc|&~;Ju&Hz z+{^4YSk&0eLZVno5A%-S8X`cOnar?i(Z?8IONh<*UfxP^6Ux>R> zoJ`lQFT~Txs6B-YUQytHv^j=$|A!UD>u{tR`BhN+HZ*lX7fhw?N?sp`Y44Li3I`=< zs2qkwLvUi_dEdAR?zwK?c~ka|tc$f$ygTT*35%4XYj%i=RHv}`Ba9=40GGr)sGPSR zaA5$r?bUQ~&o`~LTZ}I6$^xHeVtW;BC+boiyLZYL_*G-1T#Lqifth>{$_#_xa-=5P zQ3?V}MV_3?j*UO5UKt_F$SEFGxX%3tRZ;EjX zgskmy*7ja#dXLt&1&YPB*ec#jbL`qH2+$w-IDN;ozQ+mFVzwM&*_9d`P*-yJWZ+Ny z@47M&rKl@yxD<6I?^@l&?W&0}x`|1$iQ4}(N6~Z?I}TOQB{_d9TVj@OfF(`(gT`ry zvMPrvsas23H@N&AMk{H&md4Epb-WqE$I3-bjK-QhI+3c$qRfq3dXxvU<&5$-i=~2&7{R>;S};uAj!#)jdtU+ zw}{Rej_sKO5I1Fu7)js(0ONrz;;sxQrIvt;{!pi4>XRT&OSSsu4tybw=J8LS;Ylh) zf8?0WF%wUMD3Qmk8QE(ovg99WFXUI@Wx2E&<+$iiLhZ$8B}tqVL#of3jk(GZ9WOP6Hh8z5k`@x-jKcK;o_k%MymyvfLYDirk#{uaQ z#*pDuf0?sJ%e%Dl!5)**8q1dkvUo!tz(s@Xglc5FMJ?nNz4Ycr<#H4vC}t#a`EzK$xlG@H-@ zVmT_lNiAMYi~Isp?!$LO@CA~bgdI>N-aP~TuBzRKhUos3`zDocYdYjdmfadUwu3yh2oQr-oWcqD`eN{F7WQdMj=aTD> zGq`ARqoKmMj*V}`eU1~X?TD5tk@9WG=b(|5IG?mR-IQs;j5}RXtN->4?f!CxYMdGq z?kng;KbmoYTapb>Z)h^0<^Pxn6Uuldu$EAFpVZPQej6&1u}TmKVFZkLvUS_JGz1|N zAK36ev+m|bdI&;hGa7O{lR*qLnX1(46*DPD;>nF+7p z_~o5qQxuMl)EmXQsMEFfq9<4b)|1XF%_{XQB1l*AUk!#G^Yf(Z(J+me{%6*uG(q{! z3<>Npb4!v7XD#xqRrIDZJx`I2^Hceh(KYv2q@s;j@g#f%0{%Y;VA%-Sv9 zZh&QW7aUjZ=H2M84V=r9UYBkTd0mMsvz#7D7wwe9Ygx{ijxW+IepPmOGaR-doX)KK zw3+Vkt2v~=M6`PaQg_+mR|~1b=HTuRmWhE4os3$0Pn;1#;!eFOJ9QcGP$ao1-jDX; z-D5DPd+a9z?=;uqI*mw^tkNcF(j2m4v|Qd)cYjR=`IoLoGZT=ykt?W#E^zvT@iWYi z62EJL8ynw=^9v!Sy`viq=uKl4WOR2b8iE75JIO)+vEDA~UPj81E6Dp1uC^;smR=Wp z8q?$xIS_Y4i|JaE(I^y0e`=*FpC;ap(n^z&5Rb%;^HHe@Jy^9qlaM3znSq0tK85w8 z`d58E1ydsJ(NAJ@O!_02l<&oR&{4Uf6h3G)52@&)ToO`*T4_JNW2EQ-@wK5rQgXpf!${^kr` zaXzhEkSosoEt|zNIZm2u_hzvo$H}+8q{ZLdW;DPzL+>0XQu`)4@fuQhIWgu=9)|YJ z!PVOiq2zoyt9BxH3sUuXsx9QyiQkJ?cSt<@9+Tyo0_P&ZYew_8b0fM?@5rL#N?3rl z2WB0q+hqkk2=3@jYSeZ>jdn70OBs6wrW}QA6bHWdWZ;G7o2k|D9 z{@pbhZugVQwZBoEZ|yV%LCx~qLgzjY9V{(#cHHk8G+4~|!1*jdp7wBh z^0TN5PrDfLp;O>2BZpUO_x?J}itTjVCSpEG7ihLvjC@y@O0n}p=Q-EMm162DXPZUd zW%ERm8|5eM6vJ0zqz*#iT}Z8^yYW;q)ys;n|BFtocD570t${L^qm_Y3tjtQO%rn4GlT0e}o>b;N;AQ(o?~j~H z7v2s0<0Ge4Li_^v6kt(I1W!CT;pQDS6 z)qPm1oA70v5r@R;&XMXi0(QO>kA32duf3J7hmmqVT!-D`A!uXPU4>J3kWG&4Nli{d zg=>*IWH*GTe^kdUm?7^2zl~HXogkyjsg5~>Pkl9?`XEk?)KOY$tUPssI~#9*p6>J^ zu7MX9;W91zV>~>clcgE5P}o6Y)3B@ya3xZ^5(G=Baus*tT#rFp7yU^gm2VD>Kx^&q zN5=IiJpoA?@E#o8g=AEWLDo_fchetwGMTr8?puVLNBbM8HIxxluJ9PLr(%LWhW0Q? z%?hKq3iD$u&sjjD@X;NjY^~G8M_p;`H42TLV(eO{ak^K{w-6en`HhWdVPvOxdM!5n zc{{~>^ncM#v3IT0sP?UucoSV#G!=>%UHYxS9wsN%-C0U=N=Vvyz*rN)E>mG^yyQg! z>F9TKGr4P78F=gJYY5Fl$N`{>$QghAkS0F7KEWd%{>&+@sp{lL^riPS{a5APK>tlo zTu_Do4D`iajke+&(hb(|c;aYX9iJ*Jf?1G)GU#gI zFp}K^Tzg2Y_}s~_eHX_sA*GDOE~ff0E>@(J>j9?YU@Czr059TTF;eQi0Bdouk^t>| z1|EqsdLm&am@W&8hrp?`&}gRAwFbJ9L&dC{iW02r%%-HnJXCq;NL;Ovyyg@YFC*a* z2=^j|4{<+wf5w;up{lt?QIN3kEZ1 z2dJ?&NAVa&O23C>a}sfl7|#PgL$bLfn-{pV2*QscSVO{>N^qX}vhqIQT_oFr0W*b^ z`MyGU*HR-;66t7Dx~B*8s;f-+>QeuK??1o$vCA(j?IwJp|glFaH4(X z08EuO3?7d&0!TancS%_j;Kn4A_P<-oDuByL)|>|FUMcGj-1oQ`x7Eo`8H3|dNGT?I zHw6c`9T#<5omI61Xm*TCcxzyJ)zvg#>UMf??~(eC%cW^y4r0y6wIMVIRc9gP$jf7# zykyKFtlb28*4L5yDw3RO$I)24d-`F_vKMXElB z?5C0Vf*E)P$vy^Ng~V6)!0{ye9{3cM^Uxh-;1n8+=HFlijl>-rEEVht+yhB=>`z=q z@$Ln&j$JN`Tvdzw;Z#o!;T2Li1^7mi$!l$xl)VqU5-B5q;V6dfP5P4xZOozZ0j$PT z8X{vGN^C)r7tPl=I7WajnhQAi9m&Xe6^6Kv8lXS!*3`mP$^EH?50Dc+fxaTi3#u6o znh>B1suBkkC&cI-u#tTwtb~Djumy?u}}r0Bid$xJze<8P7V-145nQtXuY`)=pbgnS$~J;jB3 z;kX7#78-?vt7M@u5vR%opsN_%_fg}4@oDIhqiR}3v>dpTw`H8BG^Oh;-(vkT=f zNhB$LYjE2k@y#A5JK+UnK6^?e?{(UANux3WRxN_NUZHIBl~|hr)^Q!Ge2mmm>Kb5O ze}dr5DRJLkXNW6MCHC!gB0Z%d7dp@x+n$EE11VY7xzLYfcLPsFl2^>tc%>chF2xm7 zbTe7VW%}rOyb}5Eo)#VUIo&!fCiPCIlK5uyn0yds-Eq{D4?@@Jw$$ieRM?5cCpz7O zWZrM%4A-|})jnr%ZF{oYfmC-R%*7I^;DG`vQ`%;n;W`)~bK;WQM=ESibzd4QwOO`a zBGun4Ta{}6EY;>pzmtBir@HByz(PiwnPrZ>qBG)J(pdtkEiFdoYQpM zpjO&S6D;GQF6&F}F60SwG}iV)dBZKC$GvM|_xk1*UO~+nWw%qU*<6cmBdpPtv$-1G z2wk&fHKXht^>&&xth+i^bebHvl9e>=rpW;-r@Ojq+88>SQPzhnIf`pN#kIr@2b>Z)dolVNN;;xj) z%b=BfPL|Zt@~%~{GpJS~ZP{vchFOZ)M#~IWA=}SbHi%ZBBhJOvx+CzNigX;{8BPDL ze^f^AWh|fmrE`^Jwmo>*A!gh8N1V~MxnF@0DJy*=3dVt;H8}VYEH)b|95sT9@Rsu( zBd7>(8QVrs5#BP67(qpN%Qyo+@rp0vKzPeI-3SsDkEe;kX+~}E(ylmRQx>?xMvy3X zz=X>cLPk(A;W7>y!8oEw%2WBtMv%Ty_T(!ZFoKF9m&;p5P%-2(_8URPkjpr!)ClGx zu)tHG8t@sx3&m)#wZe%;P*LZ~3ZTvnf;xBJQKxIMqRy3aFunv8buQynC`KKr;C2$A zSid;o`wE5!mrnjyj-<#P0jw!}ba()9NsHk%pV^9@!E@KR;qRwTEK~>bbj4`N+I#*&)=hg-v zx)&Xu!6yV&Kv2=>as_mF4AbZ`#%xnGx{PrdOu$081Jr>yI?8ByUQ4sQM|j1 zVF|^%%NQfAcy}4&2BLU(8RIfjyt|AsjTP@MWAN?1LlI&m0q-tjD57|G8AB1pyUQ57yC+UKG2UG%1X)E;@$NE)Qi^w% zG3Jrt-DM0V74I%%%p=9S%NR;4-d)CYbHLZr;N4{m+NB_Pcb`4!#CUf(1B!rm_ve$i zODNu5mSf&1-d)C+H;Q+cagq@P?{1G%PK8N)z|cb72?q@mwcUh2Oq-ow=7Ni?#ns=84X-1mn z-DN?lk*0ZfS&(9+Y2IBHgpD-KyUPM_m!@gnU6urmG|juqf@C92^X{@hTQ{n0W*KbV zOfB#mWZkN>PCf4~SJl>SqDyM)Hq`=c-DX;#tqa~=ZbMr)PYbkl^R+-*w*{DCxsJ9j z2)tOJtqTG#7HI1hXo0qFYc0^$Ez|;S-6Ac})-Be8n03Ls%cs%S1@A5kv~}BPfwpd2 zEzs5lVHj6o>mK+X)5?&AZD2SXcAzvH;fAyt^!bbv5rU3t(N%yUPMtSM%<&fUK)| zcUc1KYTjKIz`B}umj$q{=G|ohtgCr0Pk*^=H2Cz@kW~F-DLs14&dE=^c?il zyt^_3yt`?dcUKC)yPF2y-9Jz=#=FZ+peNwnz5FLf^6nn_$%*mq{t%DvrG1KbcL_GR zL7(E?ZRLem*r#}R9|ef`z`NV~XD7zHdxsw$9G~Ldodow#p-=Jdo`WBz)H$elcj-qa z5td5axZvH5!qHsmXx`m-@CvWW(Y(8trr}M51K!;OKRc^qyt~wg>5k^zB{aj)yt{-R za5V2Op;?aR-6b@~0q^eDzc`Y2x8PT&Pv+f3Rs4kMZiradtdrPYd+N+^DS_`hi}}AI z{^*4rV&$(+jFFd`i8JvmR*bxiv074$yo|9eQH;Edu?km=yo|95SB$)jvG-Dpyo|B; zQjENe!N?m_jJzzsGE6b@GR87YG4e9TGE6b@GR86tjJ$QfVez0Cd0CFdfMVojjK#na zVyJ1MZZ=p9C`Mk+$6`P+@-oKaSuyf5##%rz@-oI+z)kHHs`kLh8w4Zo$lsk9BQF=k zL!aCOVB}?thdvm2pP_P!k(cFa+Yd%w#uy1O@*eu#i81oB92QrMyo_OSF!E-f$NE?? z@=7^vTfoSB%Xufp$SdVwuYSITLls~CA1W8Vix-ltKYya*p$z(6TRUT&Wj{KUR=jp{e*(?%JLyqqt+ z0mvVxF!WW7yfPpBwn4?n%jK1q0F1nhp}%6}Wei5%pkm}@0Tfh>yb^enSIbXRC zz{ty3xevg|%UHP&z{txOGgvY5GFI*bF!C}cjTIv=3t&kw@}~X?ODaZQDJTDoV&s(= zjJ)Im7>9D?0(k0ASQK0S_X&fM_lG|nV&t7y9wkEFc@IU|0RTQ;J_}aUX#;UdB*Fk@hl%A|UNu>Waold!-zty+K9V%jIxCRiwR) zaX$rV?|JB_NqeQ7u3kmjD=`RVgNn45>%rQJw3jjFlp^hAjH^JA_A;ic0O1oL?PZL+ zkRt764AS19BJE`XwjPSKmoYYRinNz8ZdZ!5moYl3NP8Khql&bbF**v;-ki8-S69#N zVr*PA%LQ`Y`{JUKocG^^LC(7uSd;V0dUQLPPq$CCrvf=|5ahgt@hA^+-U0E^dU9Sq z5f+P@oR)^YI0r{U}>bud0BvUrY7fQ0oIwC zoR8)Uw!%RToHmEl*UE_Fn3V z)|2*f4Jf5adszUbG-)pjpp+)X_~Z`1!z-~_ObwqYtmj8U@fdkdsz@N(llu=3$WJHq`fRi!Y-ApL8QGb@fv9$ z?fsn;(xkmIgVwQ{w3h`igC^}|0W{R4y)3{2Uz7H-08@ipWJKD_0;sG>ds%?hdW^J} zC0Lw;wD+?_D5ObyWd>YjX_~Z`1<+8F_Obvr)TF&EfXbS*mjxI(P1?%>^g)yMvH;tb z7-=s{&?}JkKJCNcYSLcLfI^zImjzG=q`mk>!+O$QnL&fANqbp<(`wRQ7GQ8SX)g<4 zDNWkT0t~Ju?PUQ5w<|4~K-$X!3~r3Hmn9fnkoN8;g*0ie%%H*5q`fSFr8H?T3!tGU z?PUSXphFpy@}viXiP} z0c^OKrY=Z(SpbzaX)g;fxSF(=1?Yn&?PUQ5H%8ja67&kBy?0sBdeUB*fg5ESNPG8L z(R$KenE}$?G)>wo1@OeDY0_S96T3-}_KpukYp&I#y_|tgYSLa7pp%-kR|>FdNYkXf zETCzy1-%AouM~i^H%*iFavM1PBUn%-N3&z>yqw`N(!kE!HyO6p?7W--H8eXf3!sK( z=VbwGt=V~509$KzUKYUCnw?h)z%rYr*?GAH>=a|?WeKK(X6NNPn6R3imrMAJG_dn_ z4o2(Qc{u}p(d@h|z@}BR^RfUNV9n0U0&IZW(!B@lyet51hGyqwfy+qK?7S>6;g8bn zya$8PdUjsUhTSwfFAHEd&CbgL*iEzZvH*6|?7S?1-84I|6p-CCJ1>`j-D2##EP>rL zJ1^IP-84Hdmw?^C&ih^ncGK*0XuJTHdrjBLk8@;_XA}66g%%mfLxzq=MCi`=*y?rdB*~@^eJ{;I(4B> zvGYb7!A0X!?7YYUJFic%^BzQ2rBAW*e$f~X8lPh4{Vf;%8J}Y3?cW3eg+9g3y9l6< z19skn>Ct+2-u+F%&g*D)-l@&N&g*D)-mifcI+~q#0lwi_t>@w|ch>q9lt1xyqpyNH(B-*@oB2HlSlHD_M zZ^4Pd|5Aq2Sp(f45ZZ@7b`2gFms$6F?Ha@I5e=_3D>NL(hL31?tvR8o0C7H|;kD+5 z>HxexqT$6aalQiJ_Yn=RRp(y=5cClZueDHu)LI|$@LG#P`;is#5f87mB=j>trjKZN zt)>2qo^){%4X^cvzX%}LM>M?Fdr4OSH1`n=ueCaKCqPRd(ePSpWwAmZ(ePT^WU*2o z(ePS3ga1Uaav#y~T6;q)d-kAsV+n%2oS_hSxeNb837TA$1w`y74{mlxZ%7j>lY1q;&<7*6m7tG! zc#|)Y`lR~6!#l7=lzDiQFPG})`iO@&`3hO0xsP~wlZQ!==OZ58i0&h1wrwq=x77~& z%xxreODH7jTl3ijvRunO;FN^+X5FxU_zFd`Vm@0n6f?6LQH51V#gkBWP#9&+!6loh z<_q#P*CTHNl2J%3x#r`txk#+JmtxI5-kF+v;9ErR&rt0>K3KK)Gv>Sbq-^hB$a_t; z*9i089GjGjJIbkf3L%kO<|0nK{#9G z--J3dA^Zi+Jy$Pl|KVG~4o>Ne4phSg>2idqZyjWJ2M?s~u7VElA(gbo zaGN~yP62;SvgXg@>x7|ls)Wyg0u-ryD4HU5jgH%KRhgY+`|kVDY^Ud>AeW{@r-P5w z;&$ArEuFp7uQH<-9akNsyuklm~c6%aRf9M+PLIYuBl&?PjQ|8R!F5FZ$2wEpMu&hU)9%d*ce% zjRw)~ls|~Na=^Q`M@QYSxFR$ZsgPm;grOjlRqq&&sMJ?n)vrO+=q$cGMCwLk;eO2} zZ=F*hxCP1R8iCZc#FVWZ#fMU|6|uS~8je1L0z%hx;l~c>OusU*yciqGd^Rv@7>3@d)rB6@m&15WG}#48ICN zWo#RM6@tn*V)#`ED&q{puR>56ryKqmhlN=h&1yuik`QUi@{r+Ik*17;VEwm5XOt^e z5v44*48MvfW$ZWnDx#EelHt#d7muJ`SOtzsIRZ!h2pnBi8jS^xN;zIk_*LL2<5a`1 z0!JAK3_k)#+qQvS@XBXs8~AuDlEh449XKk>A#~TT0!JA~4ZjK;WsLLC^UYJE`U|_M zz){YJ-BjQxW7rLWqe*Sie|jb4>8t9c7=9Hv%H{C;x+-v#G3WUFyd9cT7A+}0f!{XrT*oKHuj2XX^_J&)#z`nw zL(vrzl~Pa|Z;{TS9tDo(m#gKKKRj?>y%rF%!$`~_z0z!Y=VFs(9P?mcQ zzc)^dfV`24{bV^tLdAYE#z-Lc^XYccSnQ{iV@K;(v7e05ITicK7@bkEpNughRqQ8Y zT)8UtlQFIo75m8;Gf~BUGDhsDAF-c9DliHv_LDQ9h>HDW3`JDzCu1n0Vm}!}5f%H% z7>bZ%8?m2^p@@q8WDG@A>?dQyex|p_+dJ}Td)}y@3M%$f7BZofiv47asi0y%8AC}G z`^gwnLB)PDhSDnblQCW29Q(-_Z}0qw{rtQ=tnn%RYV)dkMO=heD-1>UcflNA!#IfP zp<+V0AxsYy6UrDjKot|p7&pN46l?scY7f_zjHqABI37_7{{0kCu}&4hMWcd6xdB}1 zDp-^;=9dZG(+KHcQ5HmvkPa4Qfn$VpuqX>`BNPi3Wl6*c>0nV7WEdeGEXsm(Bcy{x zS&(Lgbg(E3QjL%f7G*(-5z@h;EC?GR9W2TM1l)ymuqaD{Mo0&XvLM+A>0nV7XzSv& zE(&|vE#Sd>d@>mpc`1=_j@7G;69E`mi_pskBw zQ5I|I$^va&1dFmjTNlBiEYQ|PuqX@Iy1uTkt_~LE3|LnOi?RUL)xn}H zfOU1SC<|a+9W2TMSXT#&vH;fA!J;gHbz{MzEP-`(uqX>)T^%gS0$5iEi?RUL)xn}H zfOU1SC<|a+9W2TMSXT#&vVg3sgGE^a>*`=p7QnhXSd;~@t_~Ju0j#ToMOgsrB3N`u zHC+4@ROY!+nH>wFkPa5*k}xKMMN_*)>w`r(1KrobqAWo7b+9N4(0v4pj-#qNSX5>p zSTv-AMY&|W5z@h;EWmff2o`<68}!q`qA~-)q9GkDDg_7@4Ix-GzdPQSE=7RIk3DZB1Hq!Vq3+1d z@XUMO_k5cO2UUg&7CnNGM+-Alu;{gZyoreDV9~P{_PP-rEc$RV+yD_BEZQ;zXGKH@ zi>?o2!y7@csIMkkA1q3Jm>$u=qJ(Bdbg(F)2O>IHl+dh*4i+UeCxT$n)SgipEP6%H zXnnBgqu>I})WM>Q2_RT>bUY#xhC;i!#PCN(GBDPQ(@l z`!cVsh5)N`6)ej6*l(#|QO4MBsbEpYvPqIpJ*&t zl;yCv3KnGyiz8UHPoHRw4i=Si+UFox^o2grSg@#+BUn^!G7&7w7#&f;q7oxm)USd? zB}TBQAHkx%`(huaf<>hq!J>Wyi{8-}(OvWjs&^Q-hxZ@Sli(e$FgB|Q7Tt{c1AzQ-Dj)i)U{RTm&`ZAx7UlBLpF9Hy7G(_m zRj?>y1dIAruqX@EZrXbTS3t0+Uj>VDzH%8LSd_7H86a4cv2qz8Sd=klunHDstXu{N z7G+Ett6)(Uz>)|S?baWbRKcQBPCgkGEGjXAMadoTILcA5=%)U#D7N|E^^cZQuxQ=@ z#Nl<=Atnxx(V}7vaG1UqMYt%RM{fH?WMDL_iwX;6IV`TiLK(y2DlC*SEUv;r8DrVI zWv94(AV$(lKSujzefugBl*?fTsz^}ASg)%{P{z1KRU{~5%uE#t${77uk)Vt*Q&c1< zW7f-;68DiV}26zNG*O6?sJ zFo0LV|Ke3!M_1S=@xQYJ1=h1A5F+YVA)?#>?xHG0lriq22oWtF48=F$S?t};_2`;a zA)>MzLPY&4M3n2n@+w4>F%(fDqKy9^XYUTrHJZsvWTpg zsq5cKks_K(is<|)_>&@f!IV}hqNX7(5rY&_qu^Q~ND(zva;-v&Xx(A%*abm~XuN2U zA{s9mq=*^?7eqmds8Mir8Kj6B1y`3ril|X=b$Q>L>W9PJ-tk;eW1yo!E~r+J3z|VL zXv0)@tnZ}wSjcOj35`(D5x{Y1vLsf9^`@=1(&)(E~rstSQ$Yss8Mh!7vzE( zMH_BHgIrLfNwPA?1?@MT4h6ZO+8~#yK`y9K5QZQZ)F|j-kPB)QT)zjophm$QkVj^c z3u+W}ImiVy3NFUuxu8bFwKut-ZD-J-AQw~{NEgfqazTxP9tOFfMnMdNTu`H+%Rw%v zQ802rE~rtk4?!-dQE*oh&jmFa_KIB4&*)G*7t|Q&P>>616m*DO(9tvL`d~@)UE=Sy z3~rDMsy#zA8{~o-1%n&pf*J*p3UWb>g24@PL5+gJ4RS$^g29dFf*K8jODDw3L+Kcf*J)q401t@f-nTRphm&q2DzX{L6?JEP@`aQ7`MID*K@5XjP@|yBK`y9KFt|Z3s8O&FK`y9KFu3ttP@`e5$OYXx zyHzfzHn1XQkPGU~X_X7A4djAm1i7GEK`v-UkPB++~LZo3jxu8Zttb<%oqafBnE~rru>mV0YE68cg2y#J<2XTt$f*K9eA;<+aWtgx* zE~xQHu`3_o!C6pvH~(1-YO`LHvSTP@^DzK`y9K z5I=H3H%eVWE@-^2AQv=VSC9)DuPev}jn_pkXwRct<$}iR3UWc?bp^Sg@w$Rs(0ED2N8Rpj+mdT+p=n zhjKwJPoApyxu8>G@>E5hw~z~Z7lNmsw~!0^FG69qp9?yQ{LzwZKNs|Jgz{`Z7xW8+ z%4|OuRGO~M_H#k6Ce5@*wx0`%g`S+s_64 z4?;t>p9@+<%IKIJazP7^X_X5)gOr)8bAnvZgGenoK`!XArR0L<1i7FE_{S(qkil!9m+B#%QqG(EyxT$@oy6Mf59-2}dnoAu;CbcuA zU)o{(=CoL+b{6Z@&SIU~S*%k#i*;&eu}Rdq;`f5@Vm;C5g~aJ(I%WS zI&u$8s^od5jA<_;5SCjM$@5GZi_8uHrT+`HS zN%BnVnqPyEo=uYHmNWe%&$Qm241t#|NuFtSdZ0?OCCM|budbmyTarA}`swLbnJr14 zY5h|^rc9L;BFQuNEVpx^Br>KCPw4WVWD35TaO?cK`eItQTW%#ct@5MO)KO=-6*W1( z06Pj$tJCuM^1(TT%6=x{oOq%AexawNP!$Eb=t4KPE;LFK@*Yp9n^#xQ2f}D+ z3YoLgQsz>(SH%zt)Jq{NIV=ZnmkDGz+4m+qaCBY$1=>BGbXRd-ywvSmH4WFppz03u z_!N~d^yrB2Fa@e9(6a<#5tieBQ6DXJyR=;ce+5L{*+W&vGB@f_Tc>4iuZ|m0-)2mu z!)bPP!V5>%)xTp)FXxUi&7QN&?Kor$PESE~R}RH(tq$sck>3*C3MsllkH^=@yG6H4 z{I1u!{m6g+qINHHORF+|1%DFK-R}fb3hC}|qv3e>2cqr!tLnYntw}fre)g~G_~mX{ z!i(_F|EjJQeh2(Vzp596xAujt{lBW8g)f3H*r&X+;d{aN*ryuKc4M{kB-OOJ&16=a z3AA;pj_tCsWZ3D<)#jm%9AjfCFbb+1SFF~Z?RHE!1L4$t>gluH(!$%|Z-9CXo^M%m zsiT{OTk-^VqTRkvg__-(Li;zq0VQ5GhAV@;au5ozxWB1M&2EMBU3ay-nFCh0eQbYe zdkE%%Q17GXoz7Rg(>u}A6Ob1|bzMLzv`^6SRLJW@Cnqp~fn{a82l+0j>Wev+briGD zmW?C(czlPp|>PXCSL;;*q4R;-RAFxLFDBqkH!^RdbFTYyJ-Y8}YIFu9ZWi zNk=Toe)N~xTH28VX(HA%M0)M~9<~nRKVS*TzD;B0XtSHlE=uk}#rE8J+6j$mV*^u?Z3 zS#}+LZfyKr`r6b_&R=%pOo`A6YFPfenz+LCD(`~71JYf3>Ik|d8{MTb9j<2wb+n$r zW6SUAniXzQ=DYC!g{mK)%g2;pzW!akA%=h94~XFk4ADQrR{KAceXiSO)NWZS`X-E_ zVuqf;^(V!X!&tPvO=tU!D-vmhbgv6VJ3%IL{dMFfBTxE6op!EUn6ME3m_O8pb7}Kz z_+^mp%vCUJ{!rV*a3}mmF-T{ghS~gw3Z3T`&3y;{ZOE#5fd0fo7?zamiiGWR>*`O` zeH=|vr|DybA5hcBijmUCZ>ixc$n>#`?qlYkT;mJSMZRfj1xo^X7)75`SRY7$6 z_U)=ZJKxQjFJl(^xTjS3EnZ(j{bZVjJ|27@%@+Q}N9`d!*+L&rl1Pn49x1xf^Z7-} z$486q4CKX-?ow#G?$SNTcR_|HOy`idL!(I`TKA6#szLp-;94)!J!_LFq}oa_?42? zvk9RbZHZXsAe@7xqgW0{7=?D^KdRtDcb1dTLoL71U-&`~4U(uHjd>Q-@Azdz^`U9U zqPrdWX2?YA5gn~<$ZtS(av>RdH1{ypnlF(*7oA*oh91+Goqr+!Av(GG3~kbv1L^yD z!vobd@jNK>c#1xQbwg3RU*%uKglK>tv0n|l$Ss;M8-6CFqrDhrkqGk%{e>_qq54x1 zX3YUOTs9GQ)S2i+s?SAx3+9`|UncnDFpuq5k6y%xyaE5Z7-}(m3A1y*`j+N06Al2G z4OO4QP<4dKJ)rV0=2$rq{&+DweH7nPfLS5J>j+oFtcQAjh;Tp5-B6F+2;a~jaDJ_x zUm^S#?VDoRi|`|saxA@mL2%a8_xzW?zhd1B^$#CjS6{-_j7LE zPJGG78hQ>#@dB3TAU&V%!Wy4XpP>CfEOT&s082;Nt-}%aqx~D|bvy#S?f>TC>ZMEE zxy@s_CJs&1XRK+n>gol_*lw9O%RggPD`I9r|i8beu4%q=4V%->AG;;BCY{L zGj+8|Rz!Y6X4R#apgUSm#6igYpx*NRn$TVOa_zMU`FLn}+Zp_pVpXQHSGna0*Pv0B zs#)b072XGb4^;j4;Q;i*Y!xAKu4V0m`NdL;#4E*)SV>T|&Fm_IiHVSg&91hEv{nDhD18wAZ(Gf{jM7C8 zO*m@#Wp3xpA@KE(J_}5Rnc}D?FJsCd4}Yu}5}SnUx*GyHNfG-Fr`b7fe0tKEs65;#|e z$`U4U%}0(4yDt}tX7|hb$nM{T^BrNeb~StO4E&a`dUCZJoA)mKe<2>z{K1_`$jy^U z9N;o16Y52Z^)7nILCNt1)kcnzzR7SnB;7lwJL8NsLSLLkPBiox z4UCp6W~BadXEo*qsb-PWXdL^FP&+9;;+xfI7dqobJLX&|z0jF!T(H z&2R?jx<2IY64Pko`1E!)=t{RN{nI40avLTOFSN2|3XXC~A8{9)?utK8fUdNh8s4}S-LZaQslv?qKuTzz~M=|!cJ z*RN$)&KRL8(hpu^Bzb0NJPzE=Xwbr!G91@&FkEbu}gWB>C9sv z+Huk_`!LTo0WG^uJ+scuaY{Z@AFXps+uz0`BIh_;KQp3xjgRh9>FeEG2fr@sc?*8q zyK3%w*K_6%RcEi~fyV{I)$Qwf%iVvddTBjjdv3V;3IBFq$xKYMCrWI_oH0ygD;_Ww z4N-&n_)gEC#duJk60E6DjzHKO4XvJMS%>M_ymz#OcjQIfM>~6`>k*tfdbnDn-0Yr` z(&Kz(j+3cZNzsp@q3!Xa9}U(;mr4U4=?QO5eQ}85p-?zTk1SBRK>1Fe)nC~ z>uThihO61g3xAX&@j--iuJTO_6YGt~JHu4QHH=Bp`>M+|uGc3l zP1Z(3#;dlE_Ojj$%VWAf4#s~U78_}PANJu?I>5iit?Ha>+H4RQsFK*zhF%AB(1oiy}x4&~*N7cE7Iu{kI!&=-S%_m?xPPdv@$lf?>qSE2e zNp#4Snw>RuQnRa%uQiRrTi!nQ-nk$e@-|74WiU;`oC5Q?#PzsnDE43RIf_GEYFaPm zqXy~H`6r5HYV-_tqgsBhY`4rH>^ery)WPDjk`Aqa*c)-3A^T}JW$3S3Og&CK?8yZg zQs?wEk?zCyo&lo-|4eFcg+=7YAaI=c9#_L&H=_rBAwGtnI_a2pw zFbBN1rK+-M$XcH&t06v20OVG%3IeaaPt4!^CIpoD0?JEtZtC| z074^7g9uv?4u_cy@d$XVv@@qwJKd8A#qfNs?zx-6woxC& z{{qqt{0;M`2+}~iBrYu=%ZjahmY@4hPFW3q4!^;!=dazenMU&eIs*2vG_jQ6TMQMv zPT})#vt=V!Vtg9yBAg3%VCaWOZ>hEDF0AGKiAeEgxHd2yZGOMnQGUPrJwIFRD8FCb zry0`5MI$}gN>7IAp45M={=MDJA2?K+%3(0=5pB!lZ{Yz64{gkZiWgw+VJeS=9?{j! z45j2by85?XQ8PF4L;4?>E%qQ??Vq1mLr4Z@2Tx3<}n6hlIC#M+OS zRWJZ)3?7bb%Ehfy(Xrw-9zzpu6CtZ;typC&Zin&5qS@~HKL=yMsWK|@!RR9Uor%BQ zAki-_e3^R7gx5QMEEUg}%B{*89G}BcZ`w&GY6cc? zeS8xqIWme5w4M_E^-j&SN9ze8HFlKGq`x&Jq#nAHGx{lw>Ww=&gMa&?`t444io=u{ zbC-K@{t4muit_jvv!Xmpqw??Mx7(E?#zUf>FE(Es?FnWUDaOrpP-7Ha(QmZk3qvw#k~k? zVXhS634}XgHnM^}?hej-4t_IKR`NYzyYa~Nbmnj5-`l9yA9uaN($t7m1XX0`u$sUO z6QLu*xiDv^s>CPU9z!36zZ2@DzkGS+afitQGP(1IJab!oYF)i`2fJynPkxA*Ua=cx zZd-t!po+Z+17Yggs~g@pIuw}FEE1bs?KW6z+9&)As) zm|PLQLzn& zp)A7H){LHgDvGh!t}mQ{Pg7T&!@mR*}Bs&^2#K|SA* zb-A{^=zc}sD{c!GqVhzQ6pdI3QNDidR%RB!yHLeard>VEz^Hou8Fp+6e3KZaU^o_L zK~()AhGzKXV)%(T7d>gpHVns(cXrc+$CTrNHb)Qwf| zzu=bUk4TCyo69DcW%I`A1ebqbf9iiptoB8Bfz$1w@m%F47L8*_62E2ZB)&103$er} z*d`@DhbBF73fscOW<2W?mrdOC+RJWx+YW8o@rt`I(K+YcP4B$rrX)I%RhvHh!0i%| zE40)d?&wg#afIU-D0a$3s=u-Abu_;g`AR7NKNHmHJKZVG+IFqB-HCo9RFcwJclFT5 z-Vo{RSypKdhNtn^43(B3ya)3(RMr*Y513ye{pn<@9|a2i7sl><>A}Ux(u3fi-7+Lb z21Mg7H?=yq1IIQLJDi=gFV($iK&}_vXZ5U2t1`!PS-S#xc?Wg=F1If8Ciokm()Vck zF_=d>sBOF4qM>iWzbS_6s(B0s^95v;cSn+cRAc_xYa*qCQHHW3)&cP!i%^45m94se z?oQ4e1wRrh^}1Nr9GF?z>e|nFw0A1};%v3$bGLZp#qbx3(`l5x9;OAdO6|LoHvrRSo&8S9Nu z>E#Gdz&x6xdVJ~D)-RK(c~bq8l==$wPN-b6fBwfm`{YRJSd@9W5i18OosQ5QrYcw6 z`Xw)~7sAiWRUduH!-y;4SLdpKzU1}q=xwTOHSZR6chuv;|LMeR5JeBbkx1zsIPy@blOB4E|tIJah zzH)0ae&cYrXO56?9f5jgp1R{JPNWKc9aQ={^*sP{SDyOdD^8?);J>84uW`!Yw|(uP z(gO@%IZTPG>c7UR34Xk*&Jw3(@MnorDO2Psm@8a$=htpU{h6#7_Lv@nY58f?PeSD% z`TK;<{IkbJO20<=HP+ow>8}U}Vg7bi`#m&O;i2@@m_0N#34VgeGU*n=%=6UJJ?@0e z7Wiw$FqHZGAk6)q`g9M^zh8lW!BhM9aP$5h{MVl9_ziqojPqzrH45JqzAC0p{)Pi- zGW>*?TKkPV!r47RZU4qCEj$g~DNt!5tzH6ikqA+Q8(^-BsiJRb=`r|+VrtO0)bbJh zdogw7x9;JYf5ZO?m7YO?cKO`g<*RqUbsG}P;EVGkYV{Xxv{%na>00dL(T#=l!E-ds zks`>!(+sl&;(~hp2$rAfgz|m1I^jFFazNESdx#|)eLGTX){q_ez9)rc4aq9tIt=1? z2+OKfv}Yn!R3!ZTtF7Mu&Mh5QiLqR0Cf>jON`10{x9l#F(uFWnur@(@RXHAJ0VH=Y zjnq_8l)g3g4@wu&j)a!#t)7=Y{!}y;bz$XsRek*i037 zd{1Y#VSF7bmnCbf)F&HG#+F?a(aY7JSbvA~a@DRdVzq&&>GURQ%1gL|nlgT%Gxthi z+33!AkL3%Zw2{T<6&I=byWPTY%6w5(3!;;PlU?vrs!o-pKNla zGue^SCs1y{dJUwP$cJF=gQ)4bY1EXSFoBxB_yJgp9jHHo%HNT2N=>q)qauA`W4Sox8&&0hf6`=vsFsM2g!C5mwTD)y6Ew)K0!H+m|Gq<~f z+pYyi9FMkAt^3iD`#9bFG5yimHWWHG4-j{2Hr$RX)S%bCdsZgDmy0=Kdr$WP}V2|xAL(Y~#p)`@K zZW}nQI=50v)_+~<)=)oPN|tvl4YFYMm?c%*9_sLLTPfsDP{;q|mK7ZkhJ{IlntOAz8q+%kR!eCU^P^kcZlDyUr^a|Y{<$Rdqpob0sKZQ)q;_Rnrk`WYMP-W|@U!CKpWy!z{BcFP&B ziuStCIbA2H-FtaJ%rcew3()s@Rjb>1~jJuKFhhu*8f z(4tp#xPn%~c9xac@8nHK|K$!%bUI90cc)jJaq`z3AOnYp{TZhCQ$_2xdxe>MV84R$ zF5ze8Rxyuoic~w>E6S{Z?*!!?iD3}TfMPXN471^9is54nr@)+Ctd@vj4g3{icnHHr znA?ig-L@C&^dkK8V&K<})+aC@K`hMSnW>i5Va0Rwt0LiyJoS_9xy`zp75$`}|KRoq zlyd}#iFU=PW$4N}a^iq;)2VBDo-;&mm{PJ>%d>JmL}OVK@fZu`bw*eWvq*&A2p7Vv z6k!;`bub$s%e@fkZmF$Vwle4J%1GWiv=3u{Pzv0H@CMAwBHV`%DT%Q9%bs*-;nA{P zobYF^Gi14xZCTTfq+7lC6j$EJ@oP`Y(K}Y$S9YwHQk9U|vEl~Vv6;wIOCrry&dO(` zvZ>;D5z2F++)1=|fZFw@gEUbRDWHwKxfr(Mu?5OI9^osPog$ox5G&=D5wdbOBW1E{ zj%@Vlq%_hb6}*a}J1$+Jym#9-@nRHiq!iLosg|h7X1KIkW`Z&Y^DHSKK{*R%u?P~B zEig|&1m!=^vmZGLExGFBP%yAL17)}Drrcfl-XuFD8@)q$5&1TE-j5jeP{Ef{<6j8L zWf8unEc-Bvqw6IpBbyYd$4l;#PMLWa@^SH?yhRAzVY*5gw>Q$qQf9VnWzn|tlk5zusYaJ)9ti`I^2&G_m&2xvl+{@-mS+nZMf{qN=mILQ*Vd8tmZ~( zNH)528OiSlox2aGdm!Dp=V7)&R<3kzj+Bv&?ptPZ3a#n>eTd8ZQbzjs6U=u~#svY* zIumzCHu|C`E0ULqGP6@NuR1zWARnm$rjrPr5r)9@hnNug?45HH?`0R!PQI*TH}O)L zJ-es8~s-(dXY0M{KH?DRb3H`viDm=)VA4cqw1p`rckX}r0P z_t17mpT~|AtpegLlDbo=~BUvt?H=+ zuPmkm)YTrKtCc0m>1t2Voi6(E2Hyl#3}XiwtI@NhIFBUU7lepv5Ev37dc zce;I|YDn~o+iB(PGfj0Bo7I_#UPtH3m(=x%UTOZmw(%3nM^q{&lso(r%D#WvY}%FR zJ>`Hgx#{{8?>}|z)-;8fLIc=JrcaYPbEr4cIj>1QH`F`K@wThHVO~LV!FHZr%chK7 zw9_Kj_hZtWvQV{v&# z3d?4YC^I7qrR)q0|E1iUQ1N_(Ut#u&uo$6DIgjrkt7r$#i94u3HgvL?>)gm{so`5T zMfenmUr8AAA84%7a7Xr`>~5mytcZp>ZI;12AsUjPluww?;GfVd9S^J12C+=Up|*HgsmR3?STM?+F!c{eT8>M|9zNm6KdG`t;@8qam|wyRHud$m1|5OtquNP<=F zNr^t)q(ph6Ht0j7e2V55KG9EFU(}=qjqq~%oF&S_Xvp-fu&-{%x@xLik360ppFR&y zG1KQmfBHOUsnsJq4OF^xq^E&OH;nWIsC0dU7sn~xO-rqDN{tMLf{#;bWPZis<1sG)W{$ZfK$4NdIOwNqX$XA$0;>3KYjtH^a1<=oKmCrQB4vnI~Wq0;bf+K1fO8C|@RQK1`{xYmgGv+{o_xFr`NCgOMbT^UDFq z;KP&}J7EN-bX%hrhbcAsLolUA_Ay8JzP*tT!IT==#~ewV=Gza!lo~szIX+COku~H9 z`#00~=Z<&PXs?UFls++H25W_P)=Yk6p!zVSMrKfbm{KjX0_K4nR(=6oEn)<`xvK2mc_wfoEq83 zIGs4bi+|tV80ZM!x4(S?2bhm#YV^z-AIsFp%o`ue)W|H7eBb_e$_?=$OO2ib$cHR7 zGSkI}EHyII#fL04GSdaf(!(Y)U3|z=qo-d!WT}w}kPlgEWCG+vmKvD=`H-bXCO{e& z@aIo1gmrOamXX)Yw^OeaKQH zGcA0`QX{j>`jDkYP9GMBEH#P%X!A?I0gmihNh~e9eVGyRAxn)vBLooS>yw!8K4huU z2a){AFBe4eXI~B?x!0G2NdDr>K_q|m97OU@Uk)Pq zmoEpA{M(m#5FJS}E{sC}`)CIW1N%5>vUdow zGzexKveYQ}0eS#gY83oFKY%PX3Vx9uK$aQ>_y&4vrUk8m!4W`~8V?{Y;*h0A1Jp(U zS!xu3p#+enMgi1F09k4j0jOp)Xa*RC0J7A00HY8 zEH#QCx3uLKL1knYu)F^`J z0$FMlL3DvEHHvt2fh;weAi6-78buIYAWMxRh%S(&MiE38JSC$r(Y)OZlxIAp2O5ZwT>)F_B< z09k4jL^pseHHub{rA9$?1ISXNAi4o$sZkK!0J795T0@o^4bcrCOO2uxWT{aQ-2k%G zC|W_58ij!@?K0gv1X-#LfD$kM+l8$gyiJj;qhmi~bdhb&#jlafP_r4gRJ z9)c{rxt-Mtvb3H@K8GMnKjmqQhAh2omUjrURQBNzWT{ApAWKC$1X(K5A;?mZG-Roo z?P6W$xTRVEx3qDNr*TUc&GF*6rBYXG+)^WR$>igf8u<`z zsgV!imKvE$aUZwT$cJ!Cjm!<0k6UWwR=A}`!L?Y+=KyEq`zr(2Vm@xEv2!iv$88BfRcIeEd_bZ-swqWa1%@D3WHIehIv2?nsiv<`_AVdU#ZE%8~S69yx%E zYTA{%ici!lNAf6xFQDw)g8r=;=`F5{UJD0 zBm0jQfHO7nAvjYbGqHU*QzJ96xSmVIc`*wJ41V)@cZ(n?b}c!ZF2fss?`437*J<0p`(8;|xhiYYrXxP&sgdc34|!^2Ix^}5HTM{1osVp)^{tRijUVf*k8EmW zgKYZ1F$Bs-Hr0AL8hvC_Ew@58HRTQ=n;Mx_$VWCcGPB)BHZ`)$_Rp9oAN#Y6+3q8o z8ha~bQ=>S9Y-(hdB_G+;$Sg}fvZ;}|!}F0%jm(bv$fia%$foZtUn-oOMGmVr z!Nnj~m;vIc=@FL_0ph8tnoAuJPaiv$i_-w{)Ob=fKs=2X4G>R_g6pXO@zf}|I1La_ zje?8Q0P)l)xH#2l#lfve9_Qs~I4RSPl$NUH$9aWuAXMW|CjuZ;t?+?Rw;ty;2oP$U zI4viCA9U1`;s_~>l0HHpEXB-Gs8(IUQ8U@V;K&VE+;O^j2Xwq4JRzRpm!Qci!s7BEm2-Ro|5bBymbSMBq)dm?{S1uzj^qX^tQ~-o(Jm_HnglZIo zApk-(3I;a-LNyAy8~~vj1%n$0LNyu&7a-K5PNqWv5UMt`20}FonSNi;Lls1u!QCib zzB*9QJ-|wRKTm9O7Ak@{1z3Dv* zwqv-@H?#&q)m5|xLN#?7Ak_R*yoLq0%O&L#L62Dt0w7f5$xa49s9Mn)2-PTL8t}Vn z0YcS^)YJyKu(Jm2x1_B>YX%6_K9yJpK&Yk!-3WkCje>3jK&VDRtOFoa zqafA+5UNoS>i`HJ!Fo>ropY9bl*UR0|k3pAP zA)Xq~R*0uYL4X3pQ=@2wcxn`_5KoPw72>H;v_?ElU*auwHoc=RTjDj0SiY0aBs>09 z67dTVPfa=E7a*P*1@Q|IPmO~3fq3ekL0tjjsWDJjfOs0OD?mJr*A*b1#_Iy{^iHX3 ziyS)zt@;%pp2q765KrTE1&F8dx2b<0GCfjLAb8AMx~Q zggD}9WY(hu}?1$UD*SroU5O z;7tpcd51oAznE;wL-3}K^{) z2T-Q>)PnaDhcf*gNkf@_xy)F7zZvD!3ls%MTi5J zO26X3rQZ(`6iy$w^cRFUaH+V(flEI^hy#~OZE@gI+|*$gdvV~>Ch9l@TsmqfIWGTi zz@^~>2Dmg#6&kqo2ABZ2RPRG8;L_c#flGh9*fU?K2e?!mt&%Ae1y0HbE|rRsH?#Tw z1D9IENwxEVONYY8flH4CF;%2EaOn#Oap2NV5#qq5 z2NB}Hr8y(yIFb+5r)+667=e@?5R+1#%b15yne9WFid!7YRNUfFre`4tlqm_wV42>6 z6vr}^uEw!UpTiQzG8Ic4%T$ComZ=DWWvY(6)YBiTzw%Pg|4=;`re?zV7^Y^zfnoaQ zWuEy^Js76l31U)7HBX7+7^cMt8pE{Ua?gCI9t=|%jW~wsZW*!w!&GXBW0*=CaSYQp zC{tyH!7yEVxz{-*z%YHJySks6OEs!s!H@y$K_8NZbZ%;rS?)c_XBOx3Rndbp`G* zZ`x)l*JO41xGOnuSqak59IE5D=A?5D8O1K>zGaP+qWdZKr(ZN{dQfzofHQsEW+WZ0 zpI%r0k}mpBqhA!@y#d2nl{!`M`y;5EAWZnkdv;T$AYOpEx0^zfu#T%x2d?nE`law^ zLfr)_C$vM4&1&S!q3WrV$hM;;TQ&|QL)$z2L|1DTV7LvBTPoD_)n3t*&G3&yR*#dL zNFT-9dX{Xi(9Xzwx>wVT@>9$oLp7@qtj;8Li*OA>F+x7nQ;PJu9nBD=`p#v zEJ7|2osXfHFY~buMGsN>AbK*~GmxisQ3+S_WA8=qCw5VlS9(QNE8)+BbY!lDxmpB? z%%d>(LOLja!Tixhoh3!mDtU|v)r`ce6s8F3I~k#Inn6(MH3eZ5+ToSzl`Fl@na9E} zfNEwE$May8SE|TW#PJdMhr}QOego#^O4SEL!a?}`m1^!)-sI*2iRnZg)5(Vcx2t2? zaY7K&NuI3**>gL16iO!x}>BGf!N4gyAB~r?Vi<3A%h5RUF z#sj!GIXHhsu@@TX!^KJA?mk?cRGU)G?~RqCrbmq$w9cz290T7d2Jt!q=5P_j>vWh?Yt%(}Wv+t1L=4+#5v}KPB5jlYW#YysCfWnc6g=~F-+(_{Vl#9*we2Fh3;OVRm|32aTi1a=+r z8qvv$8miSt(bLGAq3+NAx1Gj->rO-Op?JGi9bC_m@GtyAHuA{={Dez6Yjv+n-oJ`!%X%rvoL%>OKYuN1|PNl9OQ~Y{N!zErwLqr%M z*lq|DcH_s8kRNOfTR@7ea}8PHZv^g0{iN;@8tm;Fdz83`tzi?Ur~%h_xg#{R+okq! zUCXeX!zh0?|aLfW-|iE-qODW9G{9iCfIele;Vv9!JaM_;=YG#p~m);Ro4w(ab4+TihVFemL|Jt zbd-;lI3H#2ceq$wGhwvc6gi({_lt-)x&H9Ub@jbDj;t})Oi`C^;EnFi$?8FB8Fzuy za&t6vDYI>?hAz8VkKxc1ZO}t#jp-?4wJI8VFz&Ugk92UT#*bSyOqMmkx+bfl7O%Kj zPV&x@@p6f9JQHsLRH*^2mdustU5yi^nM@mJUjjrX=(i(ldQrQJp{!O+xQt+>t`UwA-klVR)`at?sGqO%@;V%w70)XlPax%I33q3us$FL!kKA<3_1-N`QPQg* zD7{OWu=VpH=c|3^6FT7hXL5x~e%kA(Cd87HRP#+Q!keqCufsg@ItEIjd4E5y&4*JhV(>VC8Ln&XT~QUBh`=UK_?d50J-^5tABS>Bk3i+wrA zN|ra~;f}tX&0Wxk$R)nq!Ah1l=HXIb<_&rBRDv2VGm21qD_P!vhdcQW8CJ67!iUR! zIUOj(wjfYc_;Ncd`8EkbXJ1aUlI4wfxQj2hwUS$y;NePNPPLLHM?PHT%WZmC$tA=x zT{lRcl@EaS4qeF_;QqviQLzh z=@{Ab6&r~>ucSw9G}-fKBkSz>@NnZNBd{Td_D1+JBOuxH;gP;fJMtM;Ily*~u9)YmW3~W`$(chmZ0LF)QTM6h7L>WYs4> zAk%W5FVjiB_Ici&3<6*KeEd%G4;o|=oamRQ)4U4bBX+XqV|Ve!RbG9Em-+Sr4ilNy z%Y8ZDN|x;T@Y%i`vyvryKHTif460<$htKh4234}>!z+B5L6z+J@VUOspi1_9_&g&^ z_I&bXE7{@mje^JT$&x)EUg;NLhb4PHe1R`B+a!BFe4#IM7)bVf_#$8CFp%u|@Wn`ZC$`$&x)EUS$;6lI5j-_%h#tVU(Bp;mduQVI+J0%DesS z`S3cU=c!+^eEKlF-j|7tyzmPvUnUarzAt>WFEi5ex-Wc8y?*w5_#va@1yHhN&xarOWjZA< z_rj0(GV@5@?S&upWjZOZ_QH?(GV@5@?1eY^GM$zed*R1@Sr!Mf=fh9NcMdAKfcU#A$$I%`~2+r@H@Vqen}#2_+4KnK$4{#e$ST) zkR&OG-}hw#Bst3A4}6&bNs4m#LtiF9lA#>_$d?I_Bq)bJ_GNOulO;bn{E4q%`IPkJ z@OEEj*d;qTyu+8XtmOOU^zf-KGYup+IsBO~v&>3ra(JgNGc6=DIlRl4S!N}BKK!{a zlRcj-dCB1~d<92#szmBbU*^c3B_pugml+|+o)3TJ%Zw1&^Zg!RzDxFe_(xwKMDizJ z4kG!pF9(s_>&rnTfAQrYlE3BKfZ`r&(z_l9uf&+FEHklw{AFtD#gYjaWYS zpr1V-P7VwOR+^rcDS;y2O4IX_3=&f`W~J$gnHnfOD^1VLwt>R6()83!3lw=)nx32O z0!6NsrYC1Q`Q4`094k%F&Wyk%+e*{ZvwfiGV5RB#nHeautTa7A$(}cLM6EPEL$d-! zrj@3rXoo=2-b&MRG&@j`ft;piDcSR;l5{Ig&(hpL(auWK)0FIa;}Jxclog{0qD%I? zQJCl+{xEMM^-L`Z3_*0so;RLBbjhAKiXggV&l^P$U9#tmB8V>8^F|Rwm+X0?2%;<5 z^F|Xym!ue@2%<~&yio+vtqv4HbjhAK9zk@;o;Qjhx@6BAMG#%G=ZzvBU9#tmCWtQC z^F|Rwm+X0?2%<~&yio+vC41f|Omq)CLUbj2K0GKe5M9Zh57!3@qAS_+VY25_Sherl3L|3xs!wrFg z=t}l{cvPSux?hW;F;Ea)$(|374irRJvggBN0tL~P?D_E6Kq1lnRXRT|&=6h8o)3=? z6h!wS>Fb0*L3Aa1K0Gl{5Z!kqB9j6I(S0ddZFr2gnvxhBKG`>LeUm2H^WnvTC&46p zK5>(uJs&jD_|Ci*AY^WpP-1KIOwlVx95`UaD%caU=g)ZD zWY0TK_}TN}`ou*M9!5vy$wPQfVks{X(xdV^HoP$LE`(@Q9-4#~C$>xCEkpFkWOXcM zb@qJt>BK+V@GvWSx{Uiq0=VX=1I3HuA^Rv2% zw7^IgWzCYh7aD0*)+(_bYoyg#SGQG(Pnqobu}^tpnk9Qayul8&0QHpj9UmJAx7h6; z6yX;Ut}}vL8R?R|g1gb^dzs)=S7u&CC#>kG_6Sv4u%olYQmq9i`X3Q$v=EB^oPkiQ zg>ba12wk-hiRLtm)Llyn(Y;b#4=p4{?};Mx)Iw5pPdkKOT1bvwC3V+nAtid7lZ}5r%6aFA4^L6&axgH@ZtKBemc~uM{HEatHP4d#!1zWt5UUQ|!NrhYJ zU;cA!?6$d)(6rZi4)X-hXTm@gGFuHQd6%i?q0O8;^BiUq&tc}-z3+J|)IaqUc@jM+ zD-zl+MVIKJPai6Ji(j;Eri?jHi9G$>r(W%T#_QRsavD!-67$*GiA(Tw64$b&UxQGE z@ z#v-KSd1SQ!N*j)O3yOC3OuLo?RNPO(wGnEkKOKZ65?b_jsDC?qmOac$n;4W(?>*~P z#a_*gM`a9slt)<&{;vHLQw3YS4bJJCH*MbPHAM=qk^Ra|mz{`&YWKc6sO{^b$;(); zHI=I7W$(GRm(j0FA%1(pJ^kCScv&j*74PV2_lj?y6!E=>KBVy1ZplAyI6){&_!4O{ z+G$$bmlY*THd9gAvS9(S?DELBtUDcsVc19mw@D*M?NHlZ@p1+(#_3KT-sYYGa}`X2 ztV)7$Zsn~+b&1$6hdBeL%-A9!@0nKzS=o2&P^GVWwXx^jcq~HGO)M7pu_!H3i(mCl zkM5A2Xq&r=?nFZ6luo$gdA0vluVb(0>CH0`Rhxg2z2fVp78BA0?R!J=6skof#ecw; zuMSRm&1*lYdh3WuXzLWFZ1HP+u--^4!?Jk z%Tf&n_6;lBoTWZ_-RmHO_Ur53cXqp+8N840*p{avOudVzs~_I*Jm<{mo7%kT^#WZb zd(+TQJhBmBMsD|+(K~!*{HNYoZ3>T(PUmKY*bj!CeJ)6%PTS4lejH5?_02clwC0mv zXCV6|yhVsFr762*S|M)@1>ME&)9ofak6>qJLuCRfz5rt+bUxFvllLi@@sxN6OrP?z zSxW7C{RH_Ed@q73`W2I=fRoGtQldW9U+e<;8q(O)B|DR`S0902QGYts@&w z8kRk{?W_1#Rb#k;8n1(_>QPv~B1OnFu!nxzve6Cnk7UxpDrw+RoF9g|?88Vyv@^qm zA!x8hiq-syX&8ktCx%kb1lhbw9FqD~3belLX{A7&?>mE4rOWhB)rsGEojO&#KzIt7 zk>;P>vZE*nT45In+IzJ8Mh~_5JFhVBB1U@}b`zwUh&;P4=*cthp6Yk(34`DV^iWA;WD(C0v%KO2~$@rj!F>c@E zct-s~DmbsF8vcXVKlW}xd=?I67RY+>ia!hgtx`J^y==8}SxS-m`T4Xg^>cl4s@mqY zN!)bs2XC+=kidg~_IicW~uy6ucmL^f*O#Wo+_DA-J(7;2q ze_v1a#Xhg3c^0E~E;_sA&g8(WeIN1q0k4msoDRE$6Fy@$$cAZS*VU&y#NaudR=?V!heLM7kcUhxvzj7;7F0_Y++H3Yd>z zve<2Q%Q*$z#ps?#SJ6th2Hm~r2DH*$gHEBF*h+UZx)tc=9n!__Mkg^Wd=W-sSWxzV z2JrF!B@in24{ucdk45pxc;8Gj8OvueV*K0GD^;zy#&y+(KfHHjHC*(kH!0L_9#=GJ z<%K8n`I5x&61Eu^aA8z$Z%G0Qkjx90;eIprC*8DCm(O8xY%7k?t#Iniv($lqywW)@ z&qDcL?g@C8q-Ki8`&uYZO%>sT+}9~unHr@#_D8w@Qc-Q{ei1&-mE*NXs^k^eJG4-j zxYV*vmUkr=K&kewBxxk|=*27%pXaV-He0E;Zcq>I=VfVRruxr* zuP{ACZ_+;0%Oy!>!{(^{`@OQXd%2uS`z&-H#WQzxP_+lV&jdv=j%C4PV$fH)qlN-&dYPwd9hOW zA&!9ipfVk>@u4)?gHKR=)O+2mSS;Ze*dKeVHA%6k8>6jUsB=XrZ(U)AN#lg?m|5%Y zi{(x{aVZ@b5E>`3Is(&lsI2ULqBJO!RYdUbMzK+py0LoG*c&Kb73I#^6d!DqzoPiA zPUYCKqJabZ@HQW+aA`L0h2HhDuy^(ln$S*!bcc?GnGZ2&J#e~-31F3^&j#2rR@!+L zhKr!8av?mNBWpHAI1J~AN3M#R=o!Q3Z&b#TetZc+8vN?b05qveN@zm z6;FFx=2LaZlhx|`=S?r|mKyG!O51Vii>Xlp)21(2fKb_G;$Is|5&s@2xm^XnB@4-w zOA3uKCy1*2IqKv{tjbZd)s6TiY{BQz{_6Dz^Ei1x1UP;5BYfHb_4AF%=7oXklf>AW347qb8YpAZHQ@mKKLhnhB(xtyPR}59cT(&sXIHkWPmbkQ=^6Bb zGeBlg7wn}_nO@yqa`f^x7sVW?Z}0W9)CI}0>CVzjwTq%=@;&VgmZD4XIAxGZO(Cc+ z!fzd(6Azkb)t$#|2KFpUcV=0B%+0f4O1OTi|mZXPR?J*i4Bz?+=0vN)1U zmpMmWK}E%uOp}M4m@KlPlPEVpuPYBZgC&Ai|9-R8n<=sU=0xri?Q5NcTbU;H80?nQ zxI{F&d9Bl5`f5)axbSEUj$T(o^?;p1X2h;HBbI}r12pJ)s!6Asc2rVUA;%_P%+xhv z?E=+5;wzym!z{AwN1W916=F*F|;L7=}a{y zDwjLS5|z`NF`p{sbXd?zKQBXZDP#>gi-J5JvW|=wTxY_03+9{R}5*v`g(tjTLn8@Y;v;$QX6{i=f3uC+q#j>l4cebwd)Yg?ENTrK#KT#^} zxl^r3i&dvo%g)Yp65iUWo=A(8HNV2O@}T#qM;_25m!g=eGva;X3i#tYR}?^sj$Z8YhiQ9(BiUL+N_Z~ChM$b zZkepgWPf0+oOh|GkY40g!em;Jboi1P60$}!*Vj^YUu<^ESC~roO8^_49wK~7+wVhW zsy8|_zemX_T^|l(%+VbkN`@fR<>?aeMt8~s@;i2_UF~9-Jt|Olf+{{TrXie%tj-@J z3`E->>ijiA6U;=2-MoFLDo>Afik=}0)BvYOj>S+V!#|*1x;iR7R+fL5tPpiheyG7{ zwKP;OTO(3tsg3Ee(s4_u>=?+LymFjL@sk(cInGfnawplyQm>G?#M1;f

HshTAF*? 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

D|;s?O0|s>O0&G#}bSU^`8$+&#-vH9Z^OR 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%0Ar&| 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%0AsOP68+3A0q7d)o_2DPT)c~e~#uWU{hGZ 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 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/.bin_timestamp" DESC = Generating binary image from built executable restat = 1 @@ -384,7 +384,7 @@ build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND SIM_ ############################################# # Phony custom command for CMakeFiles\app -build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary +build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/signal_generators/libsignal_generators.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary ############################################# @@ -398,7 +398,7 @@ build CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUS ############################################# # Custom command for CMakeFiles\merge-bin -build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_COMMAND || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary +build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_COMMAND || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/signal_generators/libsignal_generators.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Espressif\frameworks\esp-idf-v5.5\components\esptool_py && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.5 -D SERIAL_TOOL=C:/Espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=merge_bin;-o;C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/merged-binary.bin;@C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/flash_args -D WORKING_DIRECTORY=C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build -P run_serial_tool.cmake" pool = console @@ -406,7 +406,7 @@ build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_ ############################################# # Custom command for CMakeFiles\monitor -build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/signal_generators/libsignal_generators.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Espressif\frameworks\esp-idf-v5.5\components\esptool_py && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.5 -D SERIAL_TOOL=C:/Espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--toolchain-prefix;xtensa-esp32s3-elf-;;--target;esp32s3;;--revision;0;;C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.elf -D WORKING_DIRECTORY=C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build -P run_serial_tool.cmake" pool = console @@ -414,7 +414,7 @@ build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMM ############################################# # Custom command for CMakeFiles\flash -build CMakeFiles/flash | ${cmake_ninja_workdir}CMakeFiles/flash: CUSTOM_COMMAND || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary +build CMakeFiles/flash | ${cmake_ninja_workdir}CMakeFiles/flash: CUSTOM_COMMAND || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/signal_generators/libsignal_generators.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Espressif\frameworks\esp-idf-v5.5\components\esptool_py && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.5 -D SERIAL_TOOL=C:/Espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build -P C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/run_serial_tool.cmake" pool = console @@ -468,7 +468,7 @@ build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-compone ############################################# # Custom command for CMakeFiles\dfu -build CMakeFiles/dfu | ${cmake_ninja_workdir}CMakeFiles/dfu: CUSTOM_COMMAND || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary +build CMakeFiles/dfu | ${cmake_ninja_workdir}CMakeFiles/dfu: CUSTOM_COMMAND || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/signal_generators/libsignal_generators.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/tools/mkdfu.py write -o C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/dfu.bin --json C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/flasher_args.json --pid 9 --flash-size 8MB" pool = console @@ -508,13 +508,13 @@ build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMM ############################################# # Phony custom command for CMakeFiles\__ldgen_output_sections.ld -build CMakeFiles/__ldgen_output_sections.ld | ${cmake_ninja_workdir}CMakeFiles/__ldgen_output_sections.ld: phony esp-idf/esp_system/ld/sections.ld || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +build CMakeFiles/__ldgen_output_sections.ld | ${cmake_ninja_workdir}CMakeFiles/__ldgen_output_sections.ld: phony esp-idf/esp_system/ld/sections.ld || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/signal_generators/libsignal_generators.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a ############################################# # Custom command for esp-idf\esp_system\ld\sections.ld -build esp-idf/esp_system/ld/sections.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/sections.ld: CUSTOM_COMMAND esp-idf/esp_system/ld/sections.ld.in C$:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/app.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/common.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/soc.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/hal/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/log/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/heap/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/soc/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/freertos/linker_common.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/freertos/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/src/newlib.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/src/system_libs.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/vfs/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/lwip/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/linker_common.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/linker_rw_bt_controller.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/linker.lf esp-idf/xtensa/libxtensa.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/xtensa/libxtensa.a esp-idf/spi_flash/libspi_flash.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/lwip/liblwip.a esp-idf/vfs/libvfs.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_mm/libesp_mm.a esp-idf/vfs/libvfs.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/esp_security/libesp_security.a esp-idf/efuse/libefuse.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_coex/libesp_coex.a esp-idf/driver/libdriver.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_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/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_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_twai/libesp_driver_twai.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_event/libesp_event.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp-tls/libesp-tls.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_security/libesp_security.a esp-idf/pthread/libpthread.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_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_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/bt/libbt.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/console/libconsole.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.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_psram/libesp_psram.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hid/libesp_hid.a esp-idf/bt/libbt.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/protobuf-c/libprotobuf-c.a esp-idf/console/libconsole.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/json/libjson.a esp-idf/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/main/libmain.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +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$:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/app.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/common.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/soc.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/hal/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/log/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/heap/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/soc/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/freertos/linker_common.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/freertos/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/src/newlib.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/src/system_libs.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/vfs/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/lwip/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/linker_common.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/linker_rw_bt_controller.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/linker.lf C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/linker.lf esp-idf/xtensa/libxtensa.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/xtensa/libxtensa.a esp-idf/spi_flash/libspi_flash.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/lwip/liblwip.a esp-idf/vfs/libvfs.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_mm/libesp_mm.a esp-idf/vfs/libvfs.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/esp_security/libesp_security.a esp-idf/efuse/libefuse.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_coex/libesp_coex.a esp-idf/driver/libdriver.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_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/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_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_twai/libesp_driver_twai.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_event/libesp_event.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp-tls/libesp-tls.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_security/libesp_security.a esp-idf/pthread/libpthread.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_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_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/bt/libbt.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/console/libconsole.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.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_psram/libesp_psram.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hid/libesp_hid.a esp-idf/bt/libbt.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/protobuf-c/libprotobuf-c.a esp-idf/console/libconsole.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/json/libjson.a esp-idf/signal_generators/libsignal_generators.a esp-idf/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/main/libmain.a esp-idf/signal_generators/libsignal_generators.a esp-idf/spiffs/libspiffs.a esp-idf/fatfs/libfatfs.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/signal_generators/libsignal_generators.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a COMMAND = CMakeFiles\sections.ld-d65dc84.bat 2e97b1c258d8a22e DESC = Generating esp-idf/esp_system/ld/sections.ld restat = 1 @@ -3045,7 +3045,7 @@ build esp-idf/esptool_py/install/strip: phony esp-idf/esptool_py/CMakeFiles/inst ############################################# # 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 || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary +build esp-idf/esptool_py/CMakeFiles/app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app-flash: CUSTOM_COMMAND || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/signal_generators/libsignal_generators.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Espressif\frameworks\esp-idf-v5.5\components\esptool_py && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.5 -D SERIAL_TOOL=C:/Espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@app-flash_args -D WORKING_DIRECTORY=C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build -P C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/run_serial_tool.cmake" pool = console @@ -3060,7 +3060,7 @@ build esp-idf/esptool_py/CMakeFiles/encrypted-app-flash | ${cmake_ninja_workdir} ############################################# # 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 || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary +build esp-idf/esptool_py/CMakeFiles/app_check_size | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app_check_size: CUSTOM_COMMAND || SIM_S3_1.elf __ldgen_output_sections.ld _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/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/signal_generators/libsignal_generators.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" # ============================================================================= @@ -3238,7 +3238,7 @@ build esp-idf/partition_table/CMakeFiles/partition_table-flash | ${cmake_ninja_w 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$:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/esp_app_desc.c || cmake_object_order_depends_target___idf_esp_app_format - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_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=\"SIM_S3_1\" -DPROJECT_VER=\"1\" + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_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=\"SIM_S3_1\" -DPROJECT_VER=\"1f3f204-dirty\" DEP_FILE = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\esp_app_desc.c.obj.d FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys @@ -22018,6 +22018,118 @@ build esp-idf/wifi_provisioning/install/strip: phony esp-idf/wifi_provisioning/C # C:/Espressif/frameworks/esp-idf-v5.5/CMakeLists.txt # ============================================================================= +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_signal_generators + + +############################################# +# Order-only phony target for __idf_signal_generators + +build cmake_object_order_depends_target___idf_signal_generators: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/ecg_generator.c.obj: C_COMPILER____idf_signal_generators_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/src/ecg_generator.c || cmake_object_order_depends_target___idf_signal_generators + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\signal_generators\CMakeFiles\__idf_signal_generators.dir\src\ecg_generator.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\signal_generators\CMakeFiles\__idf_signal_generators.dir + OBJECT_FILE_DIR = esp-idf\signal_generators\CMakeFiles\__idf_signal_generators.dir\src + +build esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/sine_generator.c.obj: C_COMPILER____idf_signal_generators_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/src/sine_generator.c || cmake_object_order_depends_target___idf_signal_generators + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\signal_generators\CMakeFiles\__idf_signal_generators.dir\src\sine_generator.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\signal_generators\CMakeFiles\__idf_signal_generators.dir + OBJECT_FILE_DIR = esp-idf\signal_generators\CMakeFiles\__idf_signal_generators.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_signal_generators + + +############################################# +# Link the static library esp-idf\signal_generators\libsignal_generators.a + +build esp-idf/signal_generators/libsignal_generators.a: C_STATIC_LIBRARY_LINKER____idf_signal_generators_ esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/ecg_generator.c.obj esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/sine_generator.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\signal_generators\CMakeFiles\__idf_signal_generators.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\signal_generators\libsignal_generators.a + TARGET_PDB = signal_generators.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/signal_generators/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\signal_generators && C:\Espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\29096\Desktop\work\SIM\SIM_S3_1 -BC:\Users\29096\Desktop\work\SIM\SIM_S3_1\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/signal_generators/edit_cache: phony esp-idf/signal_generators/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/signal_generators/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\signal_generators && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\29096\Desktop\work\SIM\SIM_S3_1 -BC:\Users\29096\Desktop\work\SIM\SIM_S3_1\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/signal_generators/rebuild_cache: phony esp-idf/signal_generators/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/signal_generators/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/signal_generators/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/signal_generators/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\signal_generators && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/signal_generators/install: phony esp-idf/signal_generators/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/signal_generators/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/signal_generators/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\signal_generators && C:\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/signal_generators/install/local: phony esp-idf/signal_generators/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/signal_generators/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/signal_generators/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\signal_generators && C:\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/signal_generators/install/strip: phony esp-idf/signal_generators/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Espressif/frameworks/esp-idf-v5.5/CMakeLists.txt +# ============================================================================= + # ============================================================================= # Object build statements for STATIC_LIBRARY target __idf_espressif__esp_lcd_touch @@ -25346,85 +25458,77 @@ build esp-idf/espressif__esp_lvgl_port/install/strip: phony esp-idf/espressif__e ############################################# # Order-only phony target for __idf_main -build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_app_trace cmake_object_order_depends_target___idf_bt 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_driver_touch_sens 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_espressif__esp_lcd_touch cmake_object_order_depends_target___idf_espressif__esp_lcd_touch_ft5x06 cmake_object_order_depends_target___idf_espressif__esp_lvgl_port cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_lvgl__lvgl cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_nvs_sec_provider cmake_object_order_depends_target___idf_perfmon cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_rt cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_touch_element cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_usb cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa sword.pcm.S +build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_bt cmake_object_order_depends_target___idf_esp_lcd cmake_object_order_depends_target___idf_espressif__esp_lcd_touch cmake_object_order_depends_target___idf_espressif__esp_lcd_touch_ft5x06 cmake_object_order_depends_target___idf_espressif__esp_lvgl_port cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_lvgl__lvgl cmake_object_order_depends_target___idf_signal_generators cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_xtensa sword.pcm.S build esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32_s3_szp.c.obj.d FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include + INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir build esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/main.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include + INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir build esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/app_ui.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\app_ui.c.obj.d FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include + INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir build esp-idf/main/CMakeFiles/__idf_main.dir/assets/font_alipuhui20.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/assets/font_alipuhui20.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\assets\font_alipuhui20.c.obj.d FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include + INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir\assets build esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/ble_hidd_demo.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\bt\ble_hidd_demo.c.obj.d FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include + INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir\bt build esp-idf/main/CMakeFiles/__idf_main.dir/bt/esp_hidd_prf_api.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/esp_hidd_prf_api.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\bt\esp_hidd_prf_api.c.obj.d FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include + INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir\bt build esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_dev.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hid_dev.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\bt\hid_dev.c.obj.d FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include + INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir\bt build esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_device_le_prf.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hid_device_le_prf.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\bt\hid_device_le_prf.c.obj.d FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include + INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir\bt -build esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/ecg_generator.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\ecg_generator.c.obj.d - FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include - OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir - OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir - build esp-idf/main/CMakeFiles/__idf_main.dir/__/__/sword.pcm.S.obj: ASM_COMPILER____idf_main_unscanned_ C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/sword.pcm.S || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\__\__\sword.pcm.S.obj.d FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -Wno-unused-const-variable - INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include + INCLUDES = -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir\__\__ @@ -25436,7 +25540,7 @@ build esp-idf/main/CMakeFiles/__idf_main.dir/__/__/sword.pcm.S.obj: ASM_COMPILER ############################################# # 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/esp32_s3_szp.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/assets/font_alipuhui20.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/bt/esp_hidd_prf_api.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_dev.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_device_le_prf.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/__/__/sword.pcm.S.obj || esp-idf/app_trace/libapp_trace.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a +build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/assets/font_alipuhui20.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/bt/esp_hidd_prf_api.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_dev.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_device_le_prf.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/__/__/sword.pcm.S.obj || esp-idf/bt/libbt.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/lvgl__lvgl/liblvgl__lvgl.a esp-idf/signal_generators/libsignal_generators.a esp-idf/spiffs/libspiffs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/xtensa/libxtensa.a LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir POST_BUILD = cd . @@ -25514,7 +25618,7 @@ build esp-idf/main/install/strip: phony esp-idf/main/CMakeFiles/install/strip.ut ############################################# # Custom command for sword.pcm.S -build sword.pcm.S | ${cmake_ninja_workdir}sword.pcm.S: CUSTOM_COMMAND C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/sword.pcm C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.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/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +build sword.pcm.S | ${cmake_ninja_workdir}sword.pcm.S: CUSTOM_COMMAND C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/sword.pcm C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.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_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_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_lcd/libesp_lcd.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_psram/libesp_psram.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/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.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/log/liblog.a esp-idf/lvgl__lvgl/liblvgl__lvgl.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/sdmmc/libsdmmc.a esp-idf/signal_generators/libsignal_generators.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/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe -D DATA_FILE=C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/sword.pcm -D SOURCE_FILE=C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/sword.pcm.S -D FILE_TYPE=BINARY -P C:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/scripts/data_file_embed_asm.cmake" DESC = Generating ../../sword.pcm.S restat = 1 @@ -25686,6 +25790,8 @@ build __idf_rt: phony esp-idf/rt/librt.a build __idf_sdmmc: phony esp-idf/sdmmc/libsdmmc.a +build __idf_signal_generators: phony esp-idf/signal_generators/libsignal_generators.a + build __idf_soc: phony esp-idf/soc/libsoc.a build __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a @@ -25912,6 +26018,8 @@ build librt.a: phony esp-idf/rt/librt.a build libsdmmc.a: phony esp-idf/sdmmc/libsdmmc.a +build libsignal_generators.a: phony esp-idf/signal_generators/libsignal_generators.a + build libsoc.a: phony esp-idf/soc/libsoc.a build libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a @@ -25977,7 +26085,7 @@ build all: phony bootloader app SIM_S3_1.elf esp-idf/all ############################################# # Folder: C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf -build esp-idf/all: phony esp-idf/xtensa/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_phy/all esp-idf/esp_driver_usb_serial_jtag/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/esp_driver_spi/all esp-idf/esp_gdbstub/all esp-idf/bt/all esp-idf/unity/all esp-idf/cmock/all esp-idf/console/all esp-idf/esp_driver_pcnt/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_bitscrambler/all esp-idf/esp_driver_rmt/all esp-idf/esp_driver_tsens/all esp-idf/esp_driver_sdm/all esp-idf/esp_driver_i2c/all esp-idf/esp_driver_ledc/all esp-idf/esp_driver_parlio/all esp-idf/esp_driver_twai/all esp-idf/driver/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_psram/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_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_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/perfmon/all esp-idf/rt/all esp-idf/spiffs/all esp-idf/touch_element/all esp-idf/ulp/all esp-idf/usb/all esp-idf/wifi_provisioning/all esp-idf/espressif__esp_lcd_touch/all esp-idf/espressif__esp_lcd_touch_ft5x06/all esp-idf/lvgl__lvgl/all esp-idf/espressif__esp_lvgl_port/all esp-idf/main/all +build esp-idf/all: phony esp-idf/xtensa/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_phy/all esp-idf/esp_driver_usb_serial_jtag/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/esp_driver_spi/all esp-idf/esp_gdbstub/all esp-idf/bt/all esp-idf/unity/all esp-idf/cmock/all esp-idf/console/all esp-idf/esp_driver_pcnt/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_bitscrambler/all esp-idf/esp_driver_rmt/all esp-idf/esp_driver_tsens/all esp-idf/esp_driver_sdm/all esp-idf/esp_driver_i2c/all esp-idf/esp_driver_ledc/all esp-idf/esp_driver_parlio/all esp-idf/esp_driver_twai/all esp-idf/driver/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_psram/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_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_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/perfmon/all esp-idf/rt/all esp-idf/spiffs/all esp-idf/touch_element/all esp-idf/ulp/all esp-idf/usb/all esp-idf/wifi_provisioning/all esp-idf/signal_generators/all esp-idf/espressif__esp_lcd_touch/all esp-idf/espressif__esp_lcd_touch_ft5x06/all esp-idf/lvgl__lvgl/all esp-idf/espressif__esp_lvgl_port/all esp-idf/main/all # ============================================================================= @@ -26765,6 +26873,13 @@ build esp-idf/sdmmc/all: phony esp-idf/sdmmc/libsdmmc.a # ============================================================================= +############################################# +# Folder: C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators + +build esp-idf/signal_generators/all: phony esp-idf/signal_generators/libsignal_generators.a + +# ============================================================================= + ############################################# # Folder: C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/soc @@ -26861,14 +26976,14 @@ build esp-idf/xtensa/all: phony esp-idf/xtensa/libxtensa.a ############################################# # Re-run CMake if any of its inputs changed. -build build.ninja: RERUN_CMAKE | C$:/Espressif/frameworks/esp-idf-v5.5/.git/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/cmock/CMock/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_coex/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_phy/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_wifi/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/heap/tlsf/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/json/cJSON/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/lwip/lwip/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/openthread/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/openthread/openthread/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/spiffs/spiffs/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/unity/unity/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/app_update/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c3_family/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/esp_ble_mesh/lib/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/nimble/nimble/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/console/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/cxx/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/driver/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/efuse/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/sources.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif_stack/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/device/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/ld/ld.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/espefuse.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/freertos/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/hal/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/heap/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/http_parser/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/json/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/log/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/lwip/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/src/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/openthread/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/pthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/rt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/soc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/spiffs/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ulp/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ulp/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/unity/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/usb/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/vfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/build.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/component.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/depgraph.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/dfu.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/gdbinit.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/git_submodules.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/idf.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/kconfig.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/ldgen.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/openocd.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/prefix_map.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/project.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/project_description.json.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/symbols.gdbinit.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/targets.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/tool_version_check.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/toolchain-esp32s3.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/utilities.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/version.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/kconfig_new/confgen.py C$:/Espressif/frameworks/esp-idf-v5.5/tools/kconfig_new/config.env.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/env_support/cmake/esp.cmake C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/partitions.csv C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig 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 +build build.ninja: RERUN_CMAKE | C$:/Espressif/frameworks/esp-idf-v5.5/.git/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/cmock/CMock/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_coex/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_phy/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_wifi/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/heap/tlsf/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/json/cJSON/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/lwip/lwip/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/openthread/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/openthread/openthread/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/spiffs/spiffs/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/unity/unity/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/app_update/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c3_family/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/esp_ble_mesh/lib/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/nimble/nimble/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/console/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/cxx/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/driver/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/efuse/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/sources.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif_stack/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/device/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/ld/ld.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/espefuse.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/freertos/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/hal/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/heap/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/http_parser/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/json/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/log/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/lwip/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/src/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/openthread/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/pthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/rt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/soc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/spiffs/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ulp/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ulp/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/unity/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/usb/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/vfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/build.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/component.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/depgraph.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/dfu.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/gdbinit.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/git_submodules.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/idf.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/kconfig.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/ldgen.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/openocd.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/prefix_map.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/project.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/project_description.json.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/symbols.gdbinit.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/targets.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/tool_version_check.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/toolchain-esp32s3.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/utilities.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/version.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/kconfig_new/confgen.py C$:/Espressif/frameworks/esp-idf-v5.5/tools/kconfig_new/config.env.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/.git/HEAD C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/.git/refs/heads/master C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/env_support/cmake/esp.cmake C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/partitions.csv C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig 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$:/Espressif/frameworks/esp-idf-v5.5/.git/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/cmock/CMock/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_coex/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_phy/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_wifi/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/heap/tlsf/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/json/cJSON/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/lwip/lwip/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/openthread/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/openthread/openthread/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/spiffs/spiffs/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/unity/unity/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/app_update/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c3_family/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/esp_ble_mesh/lib/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/nimble/nimble/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/console/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/cxx/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/driver/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/efuse/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/sources.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif_stack/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/device/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/ld/ld.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/espefuse.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/freertos/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/hal/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/heap/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/http_parser/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/json/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/log/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/lwip/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/src/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/openthread/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/pthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/rt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/soc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/spiffs/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ulp/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ulp/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/unity/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/usb/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/vfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/build.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/component.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/depgraph.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/dfu.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/gdbinit.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/git_submodules.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/idf.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/kconfig.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/ldgen.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/openocd.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/prefix_map.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/project.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/project_description.json.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/symbols.gdbinit.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/targets.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/tool_version_check.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/toolchain-esp32s3.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/utilities.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/version.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/kconfig_new/confgen.py C$:/Espressif/frameworks/esp-idf-v5.5/tools/kconfig_new/config.env.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/env_support/cmake/esp.cmake C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/partitions.csv C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig 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 +build C$:/Espressif/frameworks/esp-idf-v5.5/.git/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/cmock/CMock/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_coex/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_phy/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/esp_wifi/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/heap/tlsf/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/json/cJSON/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/lwip/lwip/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/openthread/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/openthread/openthread/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/spiffs/spiffs/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/.git/modules/components/unity/unity/HEAD C$:/Espressif/frameworks/esp-idf-v5.5/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/app_update/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c3_family/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/esp_ble_mesh/lib/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/nimble/nimble/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/console/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/cxx/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/driver/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/efuse/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/sources.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif_stack/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/device/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/ld/ld.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/espefuse.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/freertos/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/hal/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/heap/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/http_parser/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/json/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/log/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/lwip/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/newlib/src/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/lib/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/openthread/openthread/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/pthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/rt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/soc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/spiffs/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ulp/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/ulp/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/components/unity/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/.git C$:/Espressif/frameworks/esp-idf-v5.5/components/usb/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/vfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/build.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/component.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/depgraph.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/dfu.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/gdbinit.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/git_submodules.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/idf.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/kconfig.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/ldgen.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/openocd.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/prefix_map.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/project.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/project_description.json.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/symbols.gdbinit.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/targets.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/tool_version_check.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/toolchain-esp32s3.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/utilities.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/cmake/version.cmake C$:/Espressif/frameworks/esp-idf-v5.5/tools/kconfig_new/confgen.py C$:/Espressif/frameworks/esp-idf-v5.5/tools/kconfig_new/config.env.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/.git/HEAD C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/.git/refs/heads/master C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/CMakeLists.txt C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/env_support/cmake/esp.cmake C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/idf_component.yml C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/partitions.csv C$:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig 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 ############################################# diff --git a/build/compile_commands.json b/build/compile_commands.json index 673cc2a..b84257d 100644 --- a/build/compile_commands.json +++ b/build/compile_commands.json @@ -1,7 +1,7 @@ [ { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DLV_CONF_INCLUDE_SIMPLE -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:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -o CMakeFiles\\SIM_S3_1.elf.dir\\project_elf_src_esp32s3.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\build\\project_elf_src_esp32s3.c", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DLV_CONF_INCLUDE_SIMPLE -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:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -o CMakeFiles\\SIM_S3_1.elf.dir\\project_elf_src_esp32s3.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\build\\project_elf_src_esp32s3.c", "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\build\\project_elf_src_esp32s3.c", "output": "CMakeFiles\\SIM_S3_1.elf.dir\\project_elf_src_esp32s3.c.obj" }, @@ -913,7 +913,7 @@ }, { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_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=\\\"SIM_S3_1\\\" -DPROJECT_VER=\\\"1\\\" -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/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:\\Espressif\\frameworks\\esp-idf-v5.5\\components\\esp_app_format\\esp_app_desc.c", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_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=\\\"SIM_S3_1\\\" -DPROJECT_VER=\\\"1f3f204-dirty\\\" -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/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:\\Espressif\\frameworks\\esp-idf-v5.5\\components\\esp_app_format\\esp_app_desc.c", "file": "C:\\Espressif\\frameworks\\esp-idf-v5.5\\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" }, @@ -7667,6 +7667,18 @@ "file": "C:\\Espressif\\frameworks\\esp-idf-v5.5\\components\\wifi_provisioning\\src\\scheme_ble.c", "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_ble.c.obj" }, +{ + "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\signal_generators\\CMakeFiles\\__idf_signal_generators.dir\\src\\ecg_generator.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\components\\signal_generators\\src\\ecg_generator.c", + "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\components\\signal_generators\\src\\ecg_generator.c", + "output": "esp-idf\\signal_generators\\CMakeFiles\\__idf_signal_generators.dir\\src\\ecg_generator.c.obj" +}, +{ + "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\signal_generators\\CMakeFiles\\__idf_signal_generators.dir\\src\\sine_generator.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\components\\signal_generators\\src\\sine_generator.c", + "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\components\\signal_generators\\src\\sine_generator.c", + "output": "esp-idf\\signal_generators\\CMakeFiles\\__idf_signal_generators.dir\\src\\sine_generator.c.obj" +}, { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp_lcd_touch\\CMakeFiles\\__idf_espressif__esp_lcd_touch.dir\\esp_lcd_touch.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\managed_components\\espressif__esp_lcd_touch\\esp_lcd_touch.c", @@ -9871,61 +9883,55 @@ }, { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\esp32_s3_szp.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\esp32_s3_szp.c", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\esp32_s3_szp.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\esp32_s3_szp.c", "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\esp32_s3_szp.c", "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\esp32_s3_szp.c.obj" }, { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\main.c", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\main.c", "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\main.c", "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj" }, { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\app_ui.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\app_ui.c", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\app_ui.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\app_ui.c", "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\app_ui.c", "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\app_ui.c.obj" }, { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\assets\\font_alipuhui20.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\assets\\font_alipuhui20.c", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\assets\\font_alipuhui20.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\assets\\font_alipuhui20.c", "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\assets\\font_alipuhui20.c", "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\assets\\font_alipuhui20.c.obj" }, { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\ble_hidd_demo.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\ble_hidd_demo.c", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\ble_hidd_demo.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\ble_hidd_demo.c", "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\ble_hidd_demo.c", "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\ble_hidd_demo.c.obj" }, { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\esp_hidd_prf_api.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\esp_hidd_prf_api.c", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\esp_hidd_prf_api.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\esp_hidd_prf_api.c", "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\esp_hidd_prf_api.c", "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\esp_hidd_prf_api.c.obj" }, { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\hid_dev.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\hid_dev.c", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\hid_dev.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\hid_dev.c", "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\hid_dev.c", "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\hid_dev.c.obj" }, { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\hid_device_le_prf.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\hid_device_le_prf.c", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\hid_device_le_prf.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\hid_device_le_prf.c", "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\bt\\hid_device_le_prf.c", "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bt\\hid_device_le_prf.c.obj" }, { "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\ecg_generator.c.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\ecg_generator.c", - "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\main\\ecg_generator.c", - "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\ecg_generator.c.obj" -}, -{ - "directory": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", - "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_security/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/console -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram/xip_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens/hw_ver2/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/include/crypto/srp6a -IC:/Espressif/frameworks/esp-idf-v5.5/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.5/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/rt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__\\__\\sword.pcm.S.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\build\\sword.pcm.S", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5\\\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.5/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -Wno-unused-const-variable -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__\\__\\sword.pcm.S.obj -c C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\build\\sword.pcm.S", "file": "C:\\Users\\29096\\Desktop\\work\\SIM\\SIM_S3_1\\build\\sword.pcm.S", "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__\\__\\sword.pcm.S.obj" } diff --git a/build/esp-idf/cmake_install.cmake b/build/esp-idf/cmake_install.cmake index 2b271bf..669c820 100644 --- a/build/esp-idf/cmake_install.cmake +++ b/build/esp-idf/cmake_install.cmake @@ -562,6 +562,11 @@ if(NOT CMAKE_INSTALL_LOCAL_ONLY) include("C:/Users/29096/Desktop/work/SIM/SIM_S3_1/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/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators/cmake_install.cmake") +endif() + if(NOT CMAKE_INSTALL_LOCAL_ONLY) # Include the install script for the subdirectory. include("C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/espressif__esp_lcd_touch/cmake_install.cmake") diff --git a/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj b/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj index e1e42cf9f0ecafa52c19e11333945faa9ae5b55b..237ffc62e45578281438e5a08a96e2769a7f6200 100644 GIT binary patch delta 51 zcmZqaV{GYT+|bI*lV+S|WMHD3l37$zIe8+pnXsvWm8m%c6a=RhC>WV-zQwHN3;=*; B4S@gv delta 41 rcmZqaV{GYT+|bHAu~B~V5@uy#BNHnFLk1`aPAyO{GTnTOS<4v!_-6{O diff --git a/build/esp-idf/esp_app_format/libesp_app_format.a b/build/esp-idf/esp_app_format/libesp_app_format.a index 737d59bcac6768ed215f018de2c5fcb28d514afd..ef5ed7d771a6098b0cc0d7d62126d9851da692a4 100644 GIT binary patch delta 55 zcmdlnfpNzK#tl1Jc+!m1j0{Y4Q!7 diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj index 8a416c4b3292247135495c9dbc0ed8f5238ed29f..031d775e8111ec5338ba34fce233fbf0ec910258 100644 GIT binary patch literal 46124 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 literal 36036 zcmc(o34C2;ng7qpy;)9fnzl)rZYjNO(iO6Ir$E-Gq1i~%(n8_(Hn~YJ&DMKwx&hJx zN~@q$Q9u|e6|`&)Ac!E0MZ^*Ju4QqZpCsfme0BetQYn66>QIdBmG$Jz;bl5KJfS2s7!tte!F1|n_IC=k%gs? zy%QUj4bvDL7#R4U+H0?G?Vyd>7gn8FTQl4mT)bdtd`WOYd`+;qu_f3W9gf7-1Q(14 z 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 delta 41458 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 diff --git a/build/esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/ecg_generator.c.obj b/build/esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/ecg_generator.c.obj new file mode 100644 index 0000000000000000000000000000000000000000..d6babdf3baa3143191d600f7809f34089e98eb66 GIT binary patch literal 23400 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 Luk%y}PVc_}Rz43@ literal 0 HcmV?d00001 diff --git a/build/esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/sine_generator.c.obj b/build/esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/sine_generator.c.obj new file mode 100644 index 0000000000000000000000000000000000000000..689dbb0398620e3b81c3af8613047a2fab2219df GIT binary patch literal 28924 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 literal 0 HcmV?d00001 diff --git a/build/ldgen_libraries b/build/ldgen_libraries index 40370cd..653e09b 100644 --- a/build/ldgen_libraries +++ b/build/ldgen_libraries @@ -163,6 +163,7 @@ C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/touch_element/libtouch_el C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/usb/libusb.a C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/wifi_provisioning/libwifi_provisioning.a C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/json/libjson.a +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators/libsignal_generators.a C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/espressif__esp_lcd_touch/libespressif__esp_lcd_touch.a C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_lcd/libesp_lcd.a C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a @@ -171,5 +172,8 @@ C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/lvgl__lvgl/liblvgl__lvgl. C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/lvgl__lvgl/liblvgl__lvgl.a C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/main/libmain.a +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators/libsignal_generators.a +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/spiffs/libspiffs.a +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/fatfs/libfatfs.a C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/espressif__esp_lcd_touch_ft5x06/libespressif__esp_lcd_touch_ft5x06.a C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/espressif__esp_lvgl_port/libespressif__esp_lvgl_port.a diff --git a/build/ldgen_libraries.in b/build/ldgen_libraries.in index 1afd462..1fc861d 100644 --- a/build/ldgen_libraries.in +++ b/build/ldgen_libraries.in @@ -163,6 +163,7 @@ $ $ $ $ +$ $ $ $ @@ -171,5 +172,8 @@ $ $ $ $ +$ +$ +$ $ $ \ No newline at end of file diff --git a/build/log/idf_py_stderr_output_16512 b/build/log/idf_py_stderr_output_16512 new file mode 100644 index 0000000..22a925e --- /dev/null +++ b/build/log/idf_py_stderr_output_16512 @@ -0,0 +1 @@ +Command: ninja flash diff --git a/build/log/idf_py_stderr_output_17072 b/build/log/idf_py_stderr_output_17072 new file mode 100644 index 0000000..22a925e --- /dev/null +++ b/build/log/idf_py_stderr_output_17072 @@ -0,0 +1 @@ +Command: ninja flash diff --git a/build/log/idf_py_stderr_output_18140 b/build/log/idf_py_stderr_output_18140 new file mode 100644 index 0000000..22a925e --- /dev/null +++ b/build/log/idf_py_stderr_output_18140 @@ -0,0 +1 @@ +Command: ninja flash diff --git a/build/log/idf_py_stderr_output_20720 b/build/log/idf_py_stderr_output_20720 new file mode 100644 index 0000000..b243348 --- /dev/null +++ b/build/log/idf_py_stderr_output_20720 @@ -0,0 +1 @@ +Command: ninja all diff --git a/build/log/idf_py_stderr_output_20960 b/build/log/idf_py_stderr_output_20960 new file mode 100644 index 0000000..b243348 --- /dev/null +++ b/build/log/idf_py_stderr_output_20960 @@ -0,0 +1 @@ +Command: ninja all diff --git a/build/log/idf_py_stderr_output_22568 b/build/log/idf_py_stderr_output_22568 new file mode 100644 index 0000000..b243348 --- /dev/null +++ b/build/log/idf_py_stderr_output_22568 @@ -0,0 +1 @@ +Command: ninja all diff --git a/build/log/idf_py_stderr_output_4496 b/build/log/idf_py_stderr_output_4496 new file mode 100644 index 0000000..b243348 --- /dev/null +++ b/build/log/idf_py_stderr_output_4496 @@ -0,0 +1 @@ +Command: ninja all diff --git a/build/log/idf_py_stderr_output_4912 b/build/log/idf_py_stderr_output_4912 new file mode 100644 index 0000000..93945b8 --- /dev/null +++ b/build/log/idf_py_stderr_output_4912 @@ -0,0 +1,27 @@ +Command: C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:\Espressif\frameworks\esp-idf-v5.5\tools/idf_monitor.py -p COM16 -b 115200 --toolchain-prefix xtensa-esp32s3-elf- --target esp32s3 --revision 0 C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\SIM_S3_1.elf C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\bootloader.elf --force-color -m 'C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe' 'C:\Espressif\frameworks\esp-idf-v5.5\tools\idf.py' '-p' 'COM16' +--- Warning: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM16 instead... +--- esp-idf-monitor 1.7.0 on \\.\COM16 115200 +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H +--- 0x403c8700: _stext at ??:? +--- 0x403c8924: call_start_cpu0 at C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/subproject/main/bootloader_start.c:25 +--- To exit from IDF monitor please use "Ctrl+]". Alternatively, you can use Ctrl+T Ctrl+X to exit. +--- 0x403c8700: _stext at ??:? +--- 0x403c8924: call_start_cpu0 at C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/subproject/main/bootloader_start.c:25 +--- 0x403c8700: _stext at ??:? +--- 0x403c8924: call_start_cpu0 at C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/subproject/main/bootloader_start.c:25 +--- 0x403c8700: _stext at ??:? +--- 0x403c8924: call_start_cpu0 at C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/subproject/main/bootloader_start.c:25 +--- To exit from IDF monitor please use "Ctrl+]". Alternatively, you can use Ctrl+T Ctrl+X to exit. +--- Error: GetOverlappedResult failed (PermissionError(13, '拒绝访问。', None, 5)) +--- Waiting for the device to reconnect................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................ + +Traceback (most recent call last): + File "C:\Espressif\frameworks\esp-idf-v5.5\tools/idf_monitor.py", line 11, in + sys.exit(subprocess.run([sys.executable, '-m', 'esp_idf_monitor'] + sys.argv[1:]).returncode) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "subprocess.py", line 550, in run + File "subprocess.py", line 1199, in communicate + File "subprocess.py", line 1262, in wait + File "subprocess.py", line 1543, in _wait +KeyboardInterrupt diff --git a/build/log/idf_py_stderr_output_6804 b/build/log/idf_py_stderr_output_6804 new file mode 100644 index 0000000..b243348 --- /dev/null +++ b/build/log/idf_py_stderr_output_6804 @@ -0,0 +1 @@ +Command: ninja all diff --git a/build/log/idf_py_stderr_output_7556 b/build/log/idf_py_stderr_output_7556 new file mode 100644 index 0000000..b243348 --- /dev/null +++ b/build/log/idf_py_stderr_output_7556 @@ -0,0 +1 @@ +Command: ninja all diff --git a/build/log/idf_py_stderr_output_7624 b/build/log/idf_py_stderr_output_7624 new file mode 100644 index 0000000..b243348 --- /dev/null +++ b/build/log/idf_py_stderr_output_7624 @@ -0,0 +1 @@ +Command: ninja all diff --git a/build/log/idf_py_stderr_output_8732 b/build/log/idf_py_stderr_output_8732 new file mode 100644 index 0000000..b243348 --- /dev/null +++ b/build/log/idf_py_stderr_output_8732 @@ -0,0 +1 @@ +Command: ninja all diff --git a/build/log/idf_py_stderr_output_9152 b/build/log/idf_py_stderr_output_9152 index b243348..22a925e 100644 --- a/build/log/idf_py_stderr_output_9152 +++ b/build/log/idf_py_stderr_output_9152 @@ -1 +1 @@ -Command: ninja all +Command: ninja flash diff --git a/build/log/idf_py_stdout_output_16512 b/build/log/idf_py_stdout_output_16512 new file mode 100644 index 0000000..928431a --- /dev/null +++ b/build/log/idf_py_stdout_output_16512 @@ -0,0 +1,51 @@ +Command: ninja flash +[1/5] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" +SIM_S3_1.bin binary size 0x48a60 bytes. Smallest app partition is 0x300000 bytes. 0x2b75a0 bytes (91%) free. +[2/5] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" +Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. +[3/5] No install step for 'bootloader' +[4/5] Completed 'bootloader' +[4/5] C:\Windows\system32\cmd.exe /C "cd /D C:\Espressif\frameworks\esp-idf-v5.5\components\esptool_py && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.5 -D SERIAL_TOOL=C:/Espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build -P C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/run_serial_tool.cmake" +esptool.py --chip esp32s3 -p COM16 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 8MB 0x0 bootloader/bootloader.bin 0x10000 SIM_S3_1.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.9.1 +Serial port COM16 +Connecting.... +Chip is ESP32-S3 (QFN56) (revision v0.2) +Features: WiFi, BLE, Embedded PSRAM 8MB (AP_3v3) +Crystal is 40MHz +MAC: 64:e8:33:4c:69:b4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00005fff... +Flash will be erased from 0x00010000 to 0x00058fff... +Flash will be erased from 0x00008000 to 0x00008fff... +SHA digest in image updated +Compressed 21088 bytes to 13420... +Writing at 0x00000000... (100 %) +Wrote 21088 bytes (13420 compressed) at 0x00000000 in 0.7 seconds (effective 238.5 kbit/s)... +Hash of data verified. +Compressed 297568 bytes to 155289... +Writing at 0x00010000... (10 %) +Writing at 0x0001cd1c... (20 %) +Writing at 0x00024511... (30 %) +Writing at 0x0002aec2... (40 %) +Writing at 0x000313a5... (50 %) +Writing at 0x0003a51d... (60 %) +Writing at 0x00041c67... (70 %) +Writing at 0x00048ff5... (80 %) +Writing at 0x0004ed7b... (90 %) +Writing at 0x0005571a... (100 %) +Wrote 297568 bytes (155289 compressed) at 0x00010000 in 3.7 seconds (effective 650.9 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 119... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 282.4 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_17072 b/build/log/idf_py_stdout_output_17072 new file mode 100644 index 0000000..d6f55ff --- /dev/null +++ b/build/log/idf_py_stdout_output_17072 @@ -0,0 +1,51 @@ +Command: ninja flash +[1/5] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" +SIM_S3_1.bin binary size 0x48a60 bytes. Smallest app partition is 0x300000 bytes. 0x2b75a0 bytes (91%) free. +[2/5] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" +Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. +[3/5] No install step for 'bootloader' +[4/5] Completed 'bootloader' +[4/5] C:\Windows\system32\cmd.exe /C "cd /D C:\Espressif\frameworks\esp-idf-v5.5\components\esptool_py && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.5 -D SERIAL_TOOL=C:/Espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build -P C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/run_serial_tool.cmake" +esptool.py --chip esp32s3 -p COM16 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 8MB 0x0 bootloader/bootloader.bin 0x10000 SIM_S3_1.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.9.1 +Serial port COM16 +Connecting.... +Chip is ESP32-S3 (QFN56) (revision v0.2) +Features: WiFi, BLE, Embedded PSRAM 8MB (AP_3v3) +Crystal is 40MHz +MAC: 64:e8:33:4c:69:b4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00005fff... +Flash will be erased from 0x00010000 to 0x00058fff... +Flash will be erased from 0x00008000 to 0x00008fff... +SHA digest in image updated +Compressed 21088 bytes to 13420... +Writing at 0x00000000... (100 %) +Wrote 21088 bytes (13420 compressed) at 0x00000000 in 0.7 seconds (effective 230.3 kbit/s)... +Hash of data verified. +Compressed 297568 bytes to 155289... +Writing at 0x00010000... (10 %) +Writing at 0x0001cd1c... (20 %) +Writing at 0x00024511... (30 %) +Writing at 0x0002aec2... (40 %) +Writing at 0x000313a5... (50 %) +Writing at 0x0003a51d... (60 %) +Writing at 0x00041c67... (70 %) +Writing at 0x00048ff5... (80 %) +Writing at 0x0004ed7b... (90 %) +Writing at 0x0005571a... (100 %) +Wrote 297568 bytes (155289 compressed) at 0x00010000 in 3.7 seconds (effective 652.0 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 119... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 288.3 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_18140 b/build/log/idf_py_stdout_output_18140 new file mode 100644 index 0000000..0050f8f --- /dev/null +++ b/build/log/idf_py_stdout_output_18140 @@ -0,0 +1,61 @@ +Command: ninja flash +[1/10] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +[2/10] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" +Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. +[3/10] No install step for 'bootloader' +[4/10] Linking C static library esp-idf\main\libmain.a +[5/10] Completed 'bootloader' +[6/10] Generating esp-idf/esp_system/ld/sections.ld +[7/10] Linking CXX executable SIM_S3_1.elf +[8/10] Generating binary image from built executable +esptool.py v4.9.1 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin +[9/10] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" +SIM_S3_1.bin binary size 0x48830 bytes. Smallest app partition is 0x300000 bytes. 0x2b77d0 bytes (91%) free. +[9/10] C:\Windows\system32\cmd.exe /C "cd /D C:\Espressif\frameworks\esp-idf-v5.5\components\esptool_py && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.5 -D SERIAL_TOOL=C:/Espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build -P C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/run_serial_tool.cmake" +esptool.py --chip esp32s3 -p COM16 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 8MB 0x0 bootloader/bootloader.bin 0x10000 SIM_S3_1.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.9.1 +Serial port COM16 +Connecting... +Chip is ESP32-S3 (QFN56) (revision v0.2) +Features: WiFi, BLE, Embedded PSRAM 8MB (AP_3v3) +Crystal is 40MHz +MAC: 64:e8:33:4c:69:b4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00005fff... +Flash will be erased from 0x00010000 to 0x00058fff... +Flash will be erased from 0x00008000 to 0x00008fff... +SHA digest in image updated +Compressed 21088 bytes to 13420... +Writing at 0x00000000... (100 %) +Wrote 21088 bytes (13420 compressed) at 0x00000000 in 0.7 seconds (effective 238.8 kbit/s)... +Hash of data verified. +Compressed 297008 bytes to 154976... +Writing at 0x00010000... (10 %) +Writing at 0x0001ccd9... (20 %) +Writing at 0x00024545... (30 %) +Writing at 0x0002af0b... (40 %) +Writing at 0x0003137a... (50 %) +Writing at 0x0003a568... (60 %) +Writing at 0x00041d81... (70 %) +Writing at 0x00048f5d... (80 %) +Writing at 0x0004ed1b... (90 %) +Writing at 0x00055699... (100 %) +Wrote 297008 bytes (154976 compressed) at 0x00010000 in 3.7 seconds (effective 647.2 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 119... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 373.9 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_20720 b/build/log/idf_py_stdout_output_20720 new file mode 100644 index 0000000..67e0f96 --- /dev/null +++ b/build/log/idf_py_stdout_output_20720 @@ -0,0 +1,18 @@ +Command: ninja all +[1/9] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" +Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. +[2/9] No install step for 'bootloader' +[3/9] Completed 'bootloader' +[4/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +[5/9] Linking C static library esp-idf\main\libmain.a +[6/9] Generating esp-idf/esp_system/ld/sections.ld +[7/9] Linking CXX executable SIM_S3_1.elf +[8/9] Generating binary image from built executable +esptool.py v4.9.1 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin +[9/9] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" +SIM_S3_1.bin binary size 0x48a60 bytes. Smallest app partition is 0x300000 bytes. 0x2b75a0 bytes (91%) free. diff --git a/build/log/idf_py_stdout_output_20960 b/build/log/idf_py_stdout_output_20960 new file mode 100644 index 0000000..fbad55e --- /dev/null +++ b/build/log/idf_py_stdout_output_20960 @@ -0,0 +1,55 @@ +Command: ninja all +[0/1] Re-running CMake... +-- Minimal build - OFF +-- ccache will be used for faster recompilation +-- Building ESP-IDF components for target esp32s3 +NOTICE: +Following dependencies have new versions available: +Dependency "espressif/esp_lcd_touch_ft5x06": "1.0.6~1" -> "1.0.7" +Consider running "idf.py update-dependencies" to update your lock file. +NOTICE: Processing 5 dependencies: +NOTICE: [1/5] espressif/esp_lcd_touch (1.1.2) +NOTICE: [2/5] espressif/esp_lcd_touch_ft5x06 (1.0.6~1) +NOTICE: [3/5] espressif/esp_lvgl_port (1.4.0) +NOTICE: [4/5] lvgl/lvgl (8.3.11) +NOTICE: [5/5] idf (5.5.0) +-- Project sdkconfig file C:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig +Loading defaults file C:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig.defaults... +-- Compiler supported targets: xtensa-esp-elf +-- USING O3 +-- App "SIM_S3_1" version: 1f3f204-dirty +-- Adding linker script C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/memory.ld +-- Adding linker script C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld.in +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.bt_funcs.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.wdt.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_cca.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_test.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.libc.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/ld/esp32s3.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_bitscrambler 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_twai 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 espressif__esp_lcd_touch espressif__esp_lcd_touch_ft5x06 espressif__esp_lvgl_port esptool_py fatfs freertos hal heap http_parser idf_test ieee802154 json log lvgl__lvgl lwip main mbedtls mqtt newlib nvs_flash nvs_sec_provider openthread partition_table perfmon protobuf-c protocomm pthread rt sdmmc signal_generators soc spi_flash spiffs tcp_transport touch_element ulp unity usb vfs wear_levelling wifi_provisioning wpa_supplicant xtensa +-- Component paths: C:/Espressif/frameworks/esp-idf-v5.5/components/app_trace C:/Espressif/frameworks/esp-idf-v5.5/components/app_update C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support C:/Espressif/frameworks/esp-idf-v5.5/components/bt C:/Espressif/frameworks/esp-idf-v5.5/components/cmock C:/Espressif/frameworks/esp-idf-v5.5/components/console C:/Espressif/frameworks/esp-idf-v5.5/components/cxx C:/Espressif/frameworks/esp-idf-v5.5/components/driver C:/Espressif/frameworks/esp-idf-v5.5/components/efuse C:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls C:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc C:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format C:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format C:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex C:/Espressif/frameworks/esp-idf-v5.5/components/esp_common C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag C:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth C:/Espressif/frameworks/esp-idf-v5.5/components/esp_event C:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub C:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid C:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client C:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server C:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota C:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server C:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support C:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd C:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl C:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif C:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif_stack C:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition C:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy C:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram C:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom C:/Espressif/frameworks/esp-idf-v5.5/components/esp_security C:/Espressif/frameworks/esp-idf-v5.5/components/esp_system C:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer C:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console C:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi C:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py C:/Espressif/frameworks/esp-idf-v5.5/components/fatfs C:/Espressif/frameworks/esp-idf-v5.5/components/freertos C:/Espressif/frameworks/esp-idf-v5.5/components/hal C:/Espressif/frameworks/esp-idf-v5.5/components/heap C:/Espressif/frameworks/esp-idf-v5.5/components/http_parser C:/Espressif/frameworks/esp-idf-v5.5/components/idf_test C:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154 C:/Espressif/frameworks/esp-idf-v5.5/components/json C:/Espressif/frameworks/esp-idf-v5.5/components/log C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl C:/Espressif/frameworks/esp-idf-v5.5/components/lwip C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main C:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls C:/Espressif/frameworks/esp-idf-v5.5/components/mqtt C:/Espressif/frameworks/esp-idf-v5.5/components/newlib C:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash C:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider C:/Espressif/frameworks/esp-idf-v5.5/components/openthread C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table C:/Espressif/frameworks/esp-idf-v5.5/components/perfmon C:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c C:/Espressif/frameworks/esp-idf-v5.5/components/protocomm C:/Espressif/frameworks/esp-idf-v5.5/components/pthread C:/Espressif/frameworks/esp-idf-v5.5/components/rt C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc C:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators C:/Espressif/frameworks/esp-idf-v5.5/components/soc C:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash C:/Espressif/frameworks/esp-idf-v5.5/components/spiffs C:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport C:/Espressif/frameworks/esp-idf-v5.5/components/touch_element C:/Espressif/frameworks/esp-idf-v5.5/components/ulp C:/Espressif/frameworks/esp-idf-v5.5/components/unity C:/Espressif/frameworks/esp-idf-v5.5/components/usb C:/Espressif/frameworks/esp-idf-v5.5/components/vfs C:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling C:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning C:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant C:/Espressif/frameworks/esp-idf-v5.5/components/xtensa +-- Configuring done (15.0s) +-- Generating done (2.1s) +-- Build files have been written to: C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build +[1/10] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" +Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. +[2/10] No install step for 'bootloader' +[3/10] Completed 'bootloader' +[4/10] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +[5/10] Linking C static library esp-idf\main\libmain.a +[6/10] Generating esp-idf/esp_system/ld/sections.ld +[7/10] Linking CXX executable SIM_S3_1.elf +[8/10] Generating binary image from built executable +esptool.py v4.9.1 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin +[9/10] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" +SIM_S3_1.bin binary size 0x48830 bytes. Smallest app partition is 0x300000 bytes. 0x2b77d0 bytes (91%) free. diff --git a/build/log/idf_py_stdout_output_22568 b/build/log/idf_py_stdout_output_22568 new file mode 100644 index 0000000..d0c4ecc --- /dev/null +++ b/build/log/idf_py_stdout_output_22568 @@ -0,0 +1,81 @@ +Command: ninja all +[0/1] Re-running CMake... +-- Minimal build - OFF +-- ccache will be used for faster recompilation +-- Building ESP-IDF components for target esp32s3 +NOTICE: +Following dependencies have new versions available: +Dependency "espressif/esp_lcd_touch_ft5x06": "1.0.6~1" -> "1.0.7" +Consider running "idf.py update-dependencies" to update your lock file. +NOTICE: Processing 5 dependencies: +NOTICE: [1/5] espressif/esp_lcd_touch (1.1.2) +NOTICE: [2/5] espressif/esp_lcd_touch_ft5x06 (1.0.6~1) +NOTICE: [3/5] espressif/esp_lvgl_port (1.4.0) +NOTICE: [4/5] lvgl/lvgl (8.3.11) +NOTICE: [5/5] idf (5.5.0) +-- Project sdkconfig file C:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig +Loading defaults file C:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig.defaults... +-- Compiler supported targets: xtensa-esp-elf +-- USING O3 +-- App "SIM_S3_1" version: 1f3f204-dirty +-- Adding linker script C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/memory.ld +-- Adding linker script C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld.in +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.bt_funcs.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.wdt.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_cca.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_test.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.libc.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/ld/esp32s3.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_bitscrambler 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_twai 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 espressif__esp_lcd_touch espressif__esp_lcd_touch_ft5x06 espressif__esp_lvgl_port esptool_py fatfs freertos hal heap http_parser idf_test ieee802154 json log lvgl__lvgl lwip main mbedtls mqtt newlib nvs_flash nvs_sec_provider openthread partition_table perfmon protobuf-c protocomm pthread rt sdmmc signal_generators soc spi_flash spiffs tcp_transport touch_element ulp unity usb vfs wear_levelling wifi_provisioning wpa_supplicant xtensa +-- Component paths: C:/Espressif/frameworks/esp-idf-v5.5/components/app_trace C:/Espressif/frameworks/esp-idf-v5.5/components/app_update C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support C:/Espressif/frameworks/esp-idf-v5.5/components/bt C:/Espressif/frameworks/esp-idf-v5.5/components/cmock C:/Espressif/frameworks/esp-idf-v5.5/components/console C:/Espressif/frameworks/esp-idf-v5.5/components/cxx C:/Espressif/frameworks/esp-idf-v5.5/components/driver C:/Espressif/frameworks/esp-idf-v5.5/components/efuse C:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls C:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc C:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format C:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format C:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex C:/Espressif/frameworks/esp-idf-v5.5/components/esp_common C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag C:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth C:/Espressif/frameworks/esp-idf-v5.5/components/esp_event C:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub C:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid C:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client C:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server C:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota C:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server C:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support C:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd C:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl C:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif C:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif_stack C:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition C:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy C:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram C:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom C:/Espressif/frameworks/esp-idf-v5.5/components/esp_security C:/Espressif/frameworks/esp-idf-v5.5/components/esp_system C:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer C:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console C:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi C:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py C:/Espressif/frameworks/esp-idf-v5.5/components/fatfs C:/Espressif/frameworks/esp-idf-v5.5/components/freertos C:/Espressif/frameworks/esp-idf-v5.5/components/hal C:/Espressif/frameworks/esp-idf-v5.5/components/heap C:/Espressif/frameworks/esp-idf-v5.5/components/http_parser C:/Espressif/frameworks/esp-idf-v5.5/components/idf_test C:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154 C:/Espressif/frameworks/esp-idf-v5.5/components/json C:/Espressif/frameworks/esp-idf-v5.5/components/log C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl C:/Espressif/frameworks/esp-idf-v5.5/components/lwip C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main C:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls C:/Espressif/frameworks/esp-idf-v5.5/components/mqtt C:/Espressif/frameworks/esp-idf-v5.5/components/newlib C:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash C:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider C:/Espressif/frameworks/esp-idf-v5.5/components/openthread C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table C:/Espressif/frameworks/esp-idf-v5.5/components/perfmon C:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c C:/Espressif/frameworks/esp-idf-v5.5/components/protocomm C:/Espressif/frameworks/esp-idf-v5.5/components/pthread C:/Espressif/frameworks/esp-idf-v5.5/components/rt C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc C:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators C:/Espressif/frameworks/esp-idf-v5.5/components/soc C:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash C:/Espressif/frameworks/esp-idf-v5.5/components/spiffs C:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport C:/Espressif/frameworks/esp-idf-v5.5/components/touch_element C:/Espressif/frameworks/esp-idf-v5.5/components/ulp C:/Espressif/frameworks/esp-idf-v5.5/components/unity C:/Espressif/frameworks/esp-idf-v5.5/components/usb C:/Espressif/frameworks/esp-idf-v5.5/components/vfs C:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling C:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning C:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant C:/Espressif/frameworks/esp-idf-v5.5/components/xtensa +-- Configuring done (14.8s) +-- Generating done (2.0s) +-- Build files have been written to: C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build +[1/19] Building ASM object esp-idf/main/CMakeFiles/__idf_main.dir/__/__/sword.pcm.S.obj +[2/19] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" +Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. +[3/19] No install step for 'bootloader' +[4/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/assets/font_alipuhui20.c.obj +[5/19] Completed 'bootloader' +[6/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/esp_hidd_prf_api.c.obj +[7/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_dev.c.obj +[8/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_device_le_prf.c.obj +[9/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj +FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj +ccache C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj -MF esp-idf\main\CMakeFiles\__idf_main.dir\bt\ble_hidd_demo.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj -c C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/ble_hidd_demo.c +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/ble_hidd_demo.c:17:10: fatal error: nvs_flash.h: No such file or directory + 17 | #include "nvs_flash.h" + | ^~~~~~~~~~~~~ +compilation terminated. +[10/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj +FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj +ccache C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj -MF esp-idf\main\CMakeFiles\__idf_main.dir\esp32_s3_szp.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj -c C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.c +In file included from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.c:2: +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.h:25:10: fatal error: esp_vfs_fat.h: No such file or directory + 25 | #include "esp_vfs_fat.h" + | ^~~~~~~~~~~~~~~ +compilation terminated. +[11/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +ccache C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -MF esp-idf\main\CMakeFiles\__idf_main.dir\main.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/main.c +In file included from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/main.c:2: +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.h:25:10: fatal error: esp_vfs_fat.h: No such file or directory + 25 | #include "esp_vfs_fat.h" + | ^~~~~~~~~~~~~~~ +compilation terminated. +[12/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj +FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj +ccache C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/include/esp32c3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/osi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/blufi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/btc/profile/esp/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/hci_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/ble_log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/host/bluedroid/api/include/api -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/bt/common/tinycrypt/port -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/include/local -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi/wifi_apps/nan_app/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj -MF esp-idf\main\CMakeFiles\__idf_main.dir\app_ui.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj -c C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/app_ui.c +In file included from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/app_ui.h:3, + from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/app_ui.c:1: +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.h:25:10: fatal error: esp_vfs_fat.h: No such file or directory + 25 | #include "esp_vfs_fat.h" + | ^~~~~~~~~~~~~~~ +compilation terminated. +ninja: build stopped: subcommand failed. diff --git a/build/log/idf_py_stdout_output_4496 b/build/log/idf_py_stdout_output_4496 new file mode 100644 index 0000000..67e0f96 --- /dev/null +++ b/build/log/idf_py_stdout_output_4496 @@ -0,0 +1,18 @@ +Command: ninja all +[1/9] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" +Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. +[2/9] No install step for 'bootloader' +[3/9] Completed 'bootloader' +[4/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +[5/9] Linking C static library esp-idf\main\libmain.a +[6/9] Generating esp-idf/esp_system/ld/sections.ld +[7/9] Linking CXX executable SIM_S3_1.elf +[8/9] Generating binary image from built executable +esptool.py v4.9.1 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin +[9/9] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" +SIM_S3_1.bin binary size 0x48a60 bytes. Smallest app partition is 0x300000 bytes. 0x2b75a0 bytes (91%) free. diff --git a/build/log/idf_py_stdout_output_4912 b/build/log/idf_py_stdout_output_4912 new file mode 100644 index 0000000..86b4ec1 --- /dev/null +++ b/build/log/idf_py_stdout_output_4912 @@ -0,0 +1,3119 @@ +Command: C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:\Espressif\frameworks\esp-idf-v5.5\tools/idf_monitor.py -p COM16 -b 115200 --toolchain-prefix xtensa-esp32s3-elf- --target esp32s3 --revision 0 C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\SIM_S3_1.elf C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\bootloader.elf --force-color -m 'C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe' 'C:\Espressif\frameworks\esp-idf-v5.5\tools\idf.py' '-p' 'COM16' +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x1 (POWERON),boot:0xb (SPI_FAST_FLASH_BOOT) +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce2820,len:0x159c +load:0x403c8700,len:0xd24 +load:0x403cb700,len:0x2f48 +entry 0x403c8924 +I (24) boot: ESP-IDF v5.5 2nd stage bootloader +I (25) boot: compile time Sep 25 2025 10:34:17 +I (25) boot: Multicore bootloader +I (25) boot: chip revision: v0.2 +I (27) boot: efuse block revision: v1.3 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (35) boot.esp32s3: SPI Mode : DIO +I (39) boot.esp32s3: SPI Flash Size : 8MB +I (42) boot: Enabling RNG early entropy source... +I (47) boot: Partition Table: +I (50) boot: ## Label Usage Type ST Offset Length +I (56) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (62) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (69) boot: 2 factory factory app 00 00 00010000 00300000 +I (75) boot: 3 storage Unknown data 01 82 00310000 00300000 +I (82) boot: End of partition table +I (85) esp_image: segment 0: paddr=00010020 vaddr=3c030020 size=0efa4h ( 61348) map +I (103) esp_image: segment 1: paddr=0001efcc vaddr=3fc9b600 size=0104ch ( 4172) load +I (105) esp_image: segment 2: paddr=00020020 vaddr=42000020 size=23168h (143720) map +I (133) esp_image: segment 3: paddr=00043190 vaddr=3fc9c64c size=0228ch ( 8844) load +I (135) esp_image: segment 4: paddr=00045424 vaddr=40378000 size=135e8h ( 79336) load +I (154) esp_image: segment 5: paddr=00058a14 vaddr=600fe000 size=00020h ( 32) load +I (162) boot: Loaded app from partition at offset 0x10000 +I (162) boot: Disabling RNG early entropy source... +I (172) octal_psram: vendor id : 0x0d (AP) +I (172) octal_psram: dev id : 0x02 (generation 3) +I (172) octal_psram: density : 0x03 (64 Mbit) +I (177) octal_psram: good-die : 0x01 (Pass) +I (182) octal_psram: Latency : 0x01 (Fixed) +I (188) octal_psram: VCC : 0x01 (3V) +I (193) octal_psram: SRF : 0x01 (Fast Refresh) +I (199) octal_psram: BurstType : 0x01 (Hybrid Wrap) +I (205) octal_psram: BurstLen : 0x01 (32 Byte) +I (210) octal_psram: Readlatency : 0x02 (10 cycles@Fixed) +I (216) octal_psram: DriveStrength: 0x00 (1/1) +I (222) MSPI Timing: PSRAM timing tuning index: 5 +I (227) esp_psram: Found 8MB PSRAM device +I (231) esp_psram: Speed: 80MHz +I (235) cpu_start: Multicore app +I (541) esp_psram: SPI SRAM memory test OK +I (550) cpu_start: Pro cpu start user code +I (550) cpu_start: cpu freq: 240000000 Hz +I (550) app_init: Application information: +I (553) app_init: Project name: SIM_S3_1 +I (557) app_init: App version: 1f3f204-dirty +I (563) app_init: Compile time: Sep 26 2025 10:50:57 +I (569) app_init: ELF file SHA256: 3fd249d66... +I (574) app_init: ESP-IDF: v5.5 +I (579) efuse_init: Min chip rev: v0.0 +I (584) efuse_init: Max chip rev: v0.99  +I (588) efuse_init: Chip rev: v0.2 +I (593) heap_init: Initializing. RAM available for dynamic allocation: +I (601) heap_init: At 3FC9F2F8 len 0004A418 (297 KiB): RAM +I (607) heap_init: At 3FCE9710 len 00005724 (21 KiB): RAM +I (613) heap_init: At 600FE020 len 00001FC8 (7 KiB): RTCRAM +I (619) esp_psram: Adding pool of 8192K of PSRAM memory to heap allocator +I (627) spi_flash: detected chip: boya +I (631) spi_flash: flash io: dio +W (635) i2c: This driver is an old driver, please migrate your application code to adapt `driver/i2c_master.h` +I (646) sleep_gpio: Configure to isolate all GPIO pins in sleep state +I (653) sleep_gpio: Enable automatic switching of GPIO sleep configuration +I (660) coexist: coex firmware version: 831ec70 +I (669) coexist: coexist rom version e7ae62f +I (671) main_task: Started on CPU0 +I (681) esp_psram: Reserving pool of 32K of internal memory for DMA/internal allocations +I (681) main_task: Calling app_main() +I (691) MAIN: Starting ECG application... +I (691) SPI2: SPI and AD5328BRUZ initialized successfully. +I (701) MAIN: Button initialized on GPIO 0 +I (701) MAIN: Hardware initialization completed. +I (711) MAIN: === Signal Generation Test === +I (711) SINE_GEN: Sine wave frequency set to: 100.0 Hz +I (721) SINE_GEN: Sine wave amplitude set to: 5.0 mV +I (721) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (731) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (741) MAIN: Started sine wave generator: 100Hz, 5mV +I (741) MAIN: Signal timer started at 20kHz (50us period) +I (751) MAIN: Starting LED status indicator... +I (1781) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (2831) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (3871) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (4911) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (5951) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (6761) SINE_GEN: Sine generator stopped +I (6761) MAIN: Switched to ECG mode +I (6821) ECG_DEBUG: Max ECG value before offset: 0.007V +I (6881) ECG_DEBUG: Max ECG value before offset: 0.026V +I (6941) ECG_DEBUG: Max ECG value before offset: 0.026V +I (7001) ECG_DEBUG: Max ECG value before offset: 0.007V +I (7031) MAIN: Generated 20000 samples at 20kHz (ECG) +I (7061) ECG_DEBUG: Max ECG value before offset: 0.029V +I (7121) ECG_DEBUG: Max ECG value before offset: 0.119V +I (7181) ECG_DEBUG: Max ECG value before offset: 0.030V +I (7241) ECG_DEBUG: Max ECG value before offset: 0.007V +I (7301) ECG_DEBUG: Max ECG value before offset: 0.032V +I (7361) ECG_DEBUG: Max ECG value before offset: 0.053V +I (7421) ECG_DEBUG: Max ECG value before offset: 0.053V +I (7481) ECG_DEBUG: Max ECG value before offset: 0.032V +I (7541) ECG_DEBUG: Max ECG value before offset: 0.007V +I (7611) ECG_DEBUG: Max ECG value before offset: 0.001V +I (7671) ECG_DEBUG: Max ECG value before offset: 0.000V +I (7731) ECG_DEBUG: Max ECG value before offset: 0.000V +I (7791) ECG_DEBUG: Max ECG value before offset: 0.007V +I (7851) ECG_DEBUG: Max ECG value before offset: 0.026V +I (7911) ECG_DEBUG: Max ECG value before offset: 0.026V +I (7971) ECG_DEBUG: Max ECG value before offset: 0.007V +I (8031) ECG_DEBUG: Max ECG value before offset: 0.029V +I (8091) ECG_DEBUG: Max ECG value before offset: 0.119V +I (8151) ECG_DEBUG: Max ECG value before offset: 0.030V +I (8211) ECG_DEBUG: Max ECG value before offset: 0.007V +I (8251) MAIN: Generated 20000 samples at 20kHz (ECG) +I (8271) ECG_DEBUG: Max ECG value before offset: 0.032V +I (8331) ECG_DEBUG: Max ECG value before offset: 0.053V +I (8401) ECG_DEBUG: Max ECG value before offset: 0.053V +I (8461) ECG_DEBUG: Max ECG value before offset: 0.032V +I (8521) ECG_DEBUG: Max ECG value before offset: 0.007V +I (8581) ECG_DEBUG: Max ECG value before offset: 0.001V +I (8641) ECG_DEBUG: Max ECG value before offset: 0.000V +I (8701) ECG_DEBUG: Max ECG value before offset: 0.000V +I (8771) ECG_DEBUG: Max ECG value before offset: 0.007V +I (8831) ECG_DEBUG: Max ECG value before offset: 0.026V +I (8891) ECG_DEBUG: Max ECG value before offset: 0.026V +I (8951) ECG_DEBUG: Max ECG value before offset: 0.007V +I (9011) ECG_DEBUG: Max ECG value before offset: 0.029V +I (9071) ECG_DEBUG: Max ECG value before offset: 0.119V +I (9131) ECG_DEBUG: Max ECG value before offset: 0.030V +I (9191) ECG_DEBUG: Max ECG value before offset: 0.007V +I (9251) ECG_DEBUG: Max ECG value before offset: 0.032V +I (9311) ECG_DEBUG: Max ECG value before offset: 0.053V +I (9371) ECG_DEBUG: Max ECG value before offset: 0.053V +I (9431) ECG_DEBUG: Max ECG value before offset: 0.032V +I (9471) MAIN: Generated 20000 samples at 20kHz (ECG) +I (9501) ECG_DEBUG: Max ECG value before offset: 0.007V +I (9561) ECG_DEBUG: Max ECG value before offset: 0.001V +I (9621) ECG_DEBUG: Max ECG value before offset: 0.000V +I (9681) ECG_DEBUG: Max ECG value before offset: 0.000V +I (9741) ECG_DEBUG: Max ECG value before offset: 0.007V +I (9801) ECG_DEBUG: Max ECG value before offset: 0.026V +I (9861) ECG_DEBUG: Max ECG value before offset: 0.026V +I (9921) ECG_DEBUG: Max ECG value before offset: 0.007V +I (9991) ECG_DEBUG: Max ECG value before offset: 0.029V +I (10051) ECG_DEBUG: Max ECG value before offset: 0.119V +I (10111) ECG_DEBUG: Max ECG value before offset: 0.030V +I (10171) ECG_DEBUG: Max ECG value before offset: 0.007V +I (10231) ECG_DEBUG: Max ECG value before offset: 0.032V +I (10291) ECG_DEBUG: Max ECG value before offset: 0.053V +I (10351) ECG_DEBUG: Max ECG value before offset: 0.053V +I (10411) ECG_DEBUG: Max ECG value before offset: 0.032V +I (10471) ECG_DEBUG: Max ECG value before offset: 0.007V +I (10531) ECG_DEBUG: Max ECG value before offset: 0.001V +I (10601) ECG_DEBUG: Max ECG value before offset: 0.000V +I (10661) ECG_DEBUG: Max ECG value before offset: 0.000V +I (10691) MAIN: Generated 20000 samples at 20kHz (ECG) +I (10721) ECG_DEBUG: Max ECG value before offset: 0.007V +I (10781) ECG_DEBUG: Max ECG value before offset: 0.026V +I (10841) ECG_DEBUG: Max ECG value before offset: 0.026V +I (10901) ECG_DEBUG: Max ECG value before offset: 0.007V +I (10961) ECG_DEBUG: Max ECG value before offset: 0.029V +I (11021) ECG_DEBUG: Max ECG value before offset: 0.119V +I (11081) ECG_DEBUG: Max ECG value before offset: 0.030V +I (11141) ECG_DEBUG: Max ECG value before offset: 0.007V +I (11201) ECG_DEBUG: Max ECG value before offset: 0.032V +I (11271) ECG_DEBUG: Max ECG value before offset: 0.053V +I (11331) ECG_DEBUG: Max ECG value before offset: 0.053V +I (11391) ECG_DEBUG: Max ECG value before offset: 0.032V +I (11451) ECG_DEBUG: Max ECG value before offset: 0.007V +I (11511) ECG_DEBUG: Max ECG value before offset: 0.001V +I (11571) ECG_DEBUG: Max ECG value before offset: 0.000V +I (11631) ECG_DEBUG: Max ECG value before offset: 0.000V +I (11701) ECG_DEBUG: Max ECG value before offset: 0.007V +I (11761) ECG_DEBUG: Max ECG value before offset: 0.026V +I (11821) ECG_DEBUG: Max ECG value before offset: 0.026V +I (11881) ECG_DEBUG: Max ECG value before offset: 0.007V +I (11911) MAIN: Generated 20000 samples at 20kHz (ECG) +I (11941) ECG_DEBUG: Max ECG value before offset: 0.029V +I (12001) ECG_DEBUG: Max ECG value before offset: 0.119V +I (12061) ECG_DEBUG: Max ECG value before offset: 0.030V +I (12121) ECG_DEBUG: Max ECG value before offset: 0.007V +I (12181) ECG_DEBUG: Max ECG value before offset: 0.032V +I (12241) ECG_DEBUG: Max ECG value before offset: 0.053V +I (12301) ECG_DEBUG: Max ECG value before offset: 0.053V +I (12371) ECG_DEBUG: Max ECG value before offset: 0.032V +I (12431) ECG_DEBUG: Max ECG value before offset: 0.007V +I (12491) ECG_DEBUG: Max ECG value before offset: 0.001V +I (12551) ECG_DEBUG: Max ECG value before offset: 0.000V +I (12611) ECG_DEBUG: Max ECG value before offset: 0.000V +I (12671) ECG_DEBUG: Max ECG value before offset: 0.007V +I (12741) ECG_DEBUG: Max ECG value before offset: 0.026V +I (12801) ECG_DEBUG: Max ECG value before offset: 0.026V +I (12861) ECG_DEBUG: Max ECG value before offset: 0.007V +I (12921) ECG_DEBUG: Max ECG value before offset: 0.029V +I (12981) ECG_DEBUG: Max ECG value before offset: 0.119V +I (13041) ECG_DEBUG: Max ECG value before offset: 0.030V +I (13101) ECG_DEBUG: Max ECG value before offset: 0.007V +I (13131) MAIN: Generated 20000 samples at 20kHz (ECG) +I (13161) ECG_DEBUG: Max ECG value before offset: 0.032V +I (13221) ECG_DEBUG: Max ECG value before offset: 0.053V +I (13281) ECG_DEBUG: Max ECG value before offset: 0.053V +I (13341) ECG_DEBUG: Max ECG value before offset: 0.032V +I (13411) ECG_DEBUG: Max ECG value before offset: 0.007V +I (13471) ECG_DEBUG: Max ECG value before offset: 0.001V +I (13531) ECG_DEBUG: Max ECG value before offset: 0.000V +I (13591) ECG_DEBUG: Max ECG value before offset: 0.000V +I (13651) ECG_DEBUG: Max ECG value before offset: 0.007V +I (13711) ECG_DEBUG: Max ECG value before offset: 0.026V +I (13771) ECG_DEBUG: Max ECG value before offset: 0.026V +I (13831) ECG_DEBUG: Max ECG value before offset: 0.007V +I (13891) ECG_DEBUG: Max ECG value before offset: 0.029V +I (13951) ECG_DEBUG: Max ECG value before offset: 0.119V +I (14021) ECG_DEBUG: Max ECG value before offset: 0.030V +I (14081) ECG_DEBUG: Max ECG value before offset: 0.007V +I (14141) ECG_DEBUG: Max ECG value before offset: 0.032V +I (14201) ECG_DEBUG: Max ECG value before offset: 0.053V +I (14261) ECG_DEBUG: Max ECG value before offset: 0.053V +I (14321) ECG_DEBUG: Max ECG value before offset: 0.032V +I (14361) MAIN: Generated 20000 samples at 20kHz (ECG) +I (14381) ECG_DEBUG: Max ECG value before offset: 0.007V +I (14441) ECG_DEBUG: Max ECG value before offset: 0.001V +I (14511) ECG_DEBUG: Max ECG value before offset: 0.000V +I (14571) ECG_DEBUG: Max ECG value before offset: 0.000V +I (14631) ECG_DEBUG: Max ECG value before offset: 0.007V +I (14691) ECG_DEBUG: Max ECG value before offset: 0.026V +I (14751) ECG_DEBUG: Max ECG value before offset: 0.026V +I (14811) ECG_DEBUG: Max ECG value before offset: 0.007V +I (14871) ECG_DEBUG: Max ECG value before offset: 0.029V +I (14931) ECG_DEBUG: Max ECG value before offset: 0.119V +I (14991) ECG_DEBUG: Max ECG value before offset: 0.030V +I (15051) ECG_DEBUG: Max ECG value before offset: 0.007V +I (15111) ECG_DEBUG: Max ECG value before offset: 0.032V +I (15181) ECG_DEBUG: Max ECG value before offset: 0.053V +I (15241) ECG_DEBUG: Max ECG value before offset: 0.053V +I (15301) ECG_DEBUG: Max ECG value before offset: 0.032V +I (15361) ECG_DEBUG: Max ECG value before offset: 0.007V +I (15421) ECG_DEBUG: Max ECG value before offset: 0.001V +I (15481) ECG_DEBUG: Max ECG value before offset: 0.000V +I (15551) ECG_DEBUG: Max ECG value before offset: 0.000V +I (15581) MAIN: Generated 20000 samples at 20kHz (ECG) +I (15611) ECG_DEBUG: Max ECG value before offset: 0.007V +I (15671) ECG_DEBUG: Max ECG value before offset: 0.026V +I (15731) ECG_DEBUG: Max ECG value before offset: 0.026V +I (15791) ECG_DEBUG: Max ECG value before offset: 0.007V +I (15851) ECG_DEBUG: Max ECG value before offset: 0.029V +I (15911) ECG_DEBUG: Max ECG value before offset: 0.119V +I (15971) ECG_DEBUG: Max ECG value before offset: 0.030V +I (16031) ECG_DEBUG: Max ECG value before offset: 0.007V +I (16091) ECG_DEBUG: Max ECG value before offset: 0.032V +I (16151) ECG_DEBUG: Max ECG value before offset: 0.053V +I (16211) ECG_DEBUG: Max ECG value before offset: 0.053V +I (16281) ECG_DEBUG: Max ECG value before offset: 0.032V +I (16341) ECG_DEBUG: Max ECG value before offset: 0.007V +I (16401) ECG_DEBUG: Max ECG value before offset: 0.001V +I (16461) ECG_DEBUG: Max ECG value before offset: 0.000V +I (16521) ECG_DEBUG: Max ECG value before offset: 0.000V +I (16581) ECG_DEBUG: Max ECG value before offset: 0.007V +I (16651) ECG_DEBUG: Max ECG value before offset: 0.026V +I (16711) ECG_DEBUG: Max ECG value before offset: 0.026V +I (16771) ECG_DEBUG: Max ECG value before offset: 0.007V +I (16801) MAIN: Generated 20000 samples at 20kHz (ECG) +I (16831) ECG_DEBUG: Max ECG value before offset: 0.029V +I (16891) ECG_DEBUG: Max ECG value before offset: 0.119V +I (16951) ECG_DEBUG: Max ECG value before offset: 0.030V +I (17011) ECG_DEBUG: Max ECG value before offset: 0.007V +I (17071) ECG_DEBUG: Max ECG value before offset: 0.032V +I (17131) ECG_DEBUG: Max ECG value before offset: 0.053V +I (17191) ECG_DEBUG: Max ECG value before offset: 0.053V +I (17251) ECG_DEBUG: Max ECG value before offset: 0.032V +I (17321) ECG_DEBUG: Max ECG value before offset: 0.007V +I (17381) ECG_DEBUG: Max ECG value before offset: 0.001V +I (17441) ECG_DEBUG: Max ECG value before offset: 0.000V +I (17501) ECG_DEBUG: Max ECG value before offset: 0.000V +I (17561) ECG_DEBUG: Max ECG value before offset: 0.007V +I (17631) ECG_DEBUG: Max ECG value before offset: 0.026V +I (17691) ECG_DEBUG: Max ECG value before offset: 0.026V +I (17751) ECG_DEBUG: Max ECG value before offset: 0.007V +I (17811) ECG_DEBUG: Max ECG value before offset: 0.029V +I (17871) ECG_DEBUG: Max ECG value before offset: 0.119V +I (17931) ECG_DEBUG: Max ECG value before offset: 0.030V +I (17991) ECG_DEBUG: Max ECG value before offset: 0.007V +I (18021) MAIN: Generated 20000 samples at 20kHz (ECG) +I (18051) ECG_DEBUG: Max ECG value before offset: 0.032V +I (18111) ECG_DEBUG: Max ECG value before offset: 0.053V +I (18171) ECG_DEBUG: Max ECG value before offset: 0.053V +I (18231) ECG_DEBUG: Max ECG value before offset: 0.032V +I (18301) ECG_DEBUG: Max ECG value before offset: 0.007V +I (18361) ECG_DEBUG: Max ECG value before offset: 0.001V +I (18421) ECG_DEBUG: Max ECG value before offset: 0.000V +I (18481) ECG_DEBUG: Max ECG value before offset: 0.000V +I (18541) ECG_DEBUG: Max ECG value before offset: 0.007V +I (18601) ECG_DEBUG: Max ECG value before offset: 0.026V +I (18661) ECG_DEBUG: Max ECG value before offset: 0.026V +I (18721) ECG_DEBUG: Max ECG value before offset: 0.007V +I (18791) ECG_DEBUG: Max ECG value before offset: 0.029V +I (18851) ECG_DEBUG: Max ECG value before offset: 0.119V +I (18911) ECG_DEBUG: Max ECG value before offset: 0.030V +I (18971) ECG_DEBUG: Max ECG value before offset: 0.007V +I (19031) ECG_DEBUG: Max ECG value before offset: 0.032V +I (19091) ECG_DEBUG: Max ECG value before offset: 0.053V +I (19151) ECG_DEBUG: Max ECG value before offset: 0.053V +I (19211) ECG_DEBUG: Max ECG value before offset: 0.032V +I (19251) MAIN: Generated 20000 samples at 20kHz (ECG) +I (19271) ECG_DEBUG: Max ECG value before offset: 0.007V +I (19341) ECG_DEBUG: Max ECG value before offset: 0.001V +I (19401) ECG_DEBUG: Max ECG value before offset: 0.000V +I (19461) ECG_DEBUG: Max ECG value before offset: 0.000V +I (19521) ECG_DEBUG: Max ECG value before offset: 0.007V +I (19581) ECG_DEBUG: Max ECG value before offset: 0.026V +I (19641) ECG_DEBUG: Max ECG value before offset: 0.026V +I (19701) ECG_DEBUG: Max ECG value before offset: 0.007V +I (19761) ECG_DEBUG: Max ECG value before offset: 0.029V +I (19821) ECG_DEBUG: Max ECG value before offset: 0.119V +I (19881) ECG_DEBUG: Max ECG value before offset: 0.030V +I (19941) ECG_DEBUG: Max ECG value before offset: 0.007V +I (20011) ECG_DEBUG: Max ECG value before offset: 0.032V +I (20071) ECG_DEBUG: Max ECG value before offset: 0.053V +I (20131) ECG_DEBUG: Max ECG value before offset: 0.053V +I (20191) ECG_DEBUG: Max ECG value before offset: 0.032V +I (20251) ECG_DEBUG: Max ECG value before offset: 0.007V +I (20311) ECG_DEBUG: Max ECG value before offset: 0.001V +I (20381) ECG_DEBUG: Max ECG value before offset: 0.000V +I (20441) ECG_DEBUG: Max ECG value before offset: 0.000V +I (20471) MAIN: Generated 20000 samples at 20kHz (ECG) +I (20501) ECG_DEBUG: Max ECG value before offset: 0.007V +I (20561) ECG_DEBUG: Max ECG value before offset: 0.026V +I (20621) ECG_DEBUG: Max ECG value before offset: 0.026V +I (20681) ECG_DEBUG: Max ECG value before offset: 0.007V +I (20741) ECG_DEBUG: Max ECG value before offset: 0.029V +I (20761) MAIN: DRAM Total: 367363 bytes, Used: 57128 bytes, Free: 310235 bytes, DRAM_Largest_block: 249856 bytes +I (20761) MAIN: DRAM Used: 15.55% +I (20761) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (20771) MAIN: PSRAM Used: 0.03% +I (20801) ECG_DEBUG: Max ECG value before offset: 0.119V +I (20861) ECG_DEBUG: Max ECG value before offset: 0.030V +I (20921) ECG_DEBUG: Max ECG value before offset: 0.007V +I (20981) ECG_DEBUG: Max ECG value before offset: 0.032V +I (21051) ECG_DEBUG: Max ECG value before offset: 0.053V +I (21111) ECG_DEBUG: Max ECG value before offset: 0.053V +I (21171) ECG_DEBUG: Max ECG value before offset: 0.032V +I (21231) ECG_DEBUG: Max ECG value before offset: 0.007V +I (21291) ECG_DEBUG: Max ECG value before offset: 0.001V +I (21351) ECG_DEBUG: Max ECG value before offset: 0.000V +I (21421) ECG_DEBUG: Max ECG value before offset: 0.000V +I (21481) ECG_DEBUG: Max ECG value before offset: 0.007V +I (21541) ECG_DEBUG: Max ECG value before offset: 0.026V +I (21601) ECG_DEBUG: Max ECG value before offset: 0.026V +I (21661) ECG_DEBUG: Max ECG value before offset: 0.007V +I (21691) MAIN: Generated 20000 samples at 20kHz (ECG) +I (21721) ECG_DEBUG: Max ECG value before offset: 0.029V +I (21781) ECG_DEBUG: Max ECG value before offset: 0.119V +I (21841) ECG_DEBUG: Max ECG value before offset: 0.030V +I (21901) ECG_DEBUG: Max ECG value before offset: 0.007V +I (21961) ECG_DEBUG: Max ECG value before offset: 0.032V +I (22021) ECG_DEBUG: Max ECG value before offset: 0.053V +I (22091) ECG_DEBUG: Max ECG value before offset: 0.053V +I (22151) ECG_DEBUG: Max ECG value before offset: 0.032V +I (22211) ECG_DEBUG: Max ECG value before offset: 0.007V +I (22271) ECG_DEBUG: Max ECG value before offset: 0.001V +I (22331) ECG_DEBUG: Max ECG value before offset: 0.000V +I (22401) ECG_DEBUG: Max ECG value before offset: 0.000V +I (22461) ECG_DEBUG: Max ECG value before offset: 0.007V +I (22521) ECG_DEBUG: Max ECG value before offset: 0.026V +I (22581) ECG_DEBUG: Max ECG value before offset: 0.026V +I (22641) ECG_DEBUG: Max ECG value before offset: 0.007V +I (22701) ECG_DEBUG: Max ECG value before offset: 0.029V +I (22761) ECG_DEBUG: Max ECG value before offset: 0.119V +I (22821) ECG_DEBUG: Max ECG value before offset: 0.030V +I (22881) ECG_DEBUG: Max ECG value before offset: 0.007V +I (22911) MAIN: Generated 20000 samples at 20kHz (ECG) +I (22941) ECG_DEBUG: Max ECG value before offset: 0.032V +I (23001) ECG_DEBUG: Max ECG value before offset: 0.053V +I (23061) ECG_DEBUG: Max ECG value before offset: 0.053V +I (23131) ECG_DEBUG: Max ECG value before offset: 0.032V +I (23191) ECG_DEBUG: Max ECG value before offset: 0.007V +I (23251) ECG_DEBUG: Max ECG value before offset: 0.001V +I (23311) ECG_DEBUG: Max ECG value before offset: 0.000V +I (23371) ECG_DEBUG: Max ECG value before offset: 0.000V +I (23431) ECG_DEBUG: Max ECG value before offset: 0.007V +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x1 (POWERON),boot:0x2b (SPI_FAST_FLASH_BOOT) +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce2820,len:0x159c +load:0x403c8700,len:0xd24 +load:0x403cb700,len:0x2f48 +entry 0x403c8924 +I (24) boot: ESP-IDF v5.5 2nd stage bootloader +I (25) boot: compile time Sep 25 2025 10:34:17 +I (25) boot: Multicore bootloader +I (25) boot: chip revision: v0.2 +I (28) boot: efuse block revision: v1.3 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (35) boot.esp32s3: SPI Mode : DIO +I (39) boot.esp32s3: SPI Flash Size : 8MB +I (43) boot: Enabling RNG early entropy source... +I (47) boot: Partition Table: +I (50) boot: ## Label Usage Type ST Offset Length +I (56) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (62) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (69) boot: 2 factory factory app 00 00 00010000 00300000 +I (75) boot: 3 storage Unknown data 01 82 00310000 00300000 +I (82) boot: End of partition table +I (85) esp_image: segment 0: paddr=00010020 vaddr=3c030020 size=0efa4h ( 61348) map +I (104) esp_image: segment 1: paddr=0001efcc vaddr=3fc9b600 size=0104ch ( 4172) load +I (105) esp_image: segment 2: paddr=00020020 vaddr=42000020 size=23168h (143720) map +I (133) esp_image: segment 3: paddr=00043190 vaddr=3fc9c64c size=0228ch ( 8844) load +I (135) esp_image: segment 4: paddr=00045424 vaddr=40378000 size=135e8h ( 79336) load +I (154) esp_image: segment 5: paddr=00058a14 vaddr=600fe000 size=00020h ( 32) load +I (162) boot: Loaded app from partition at offset 0x10000 +I (162) boot: Disabling RNG early entropy source... +I (172) octal_psram: vendor id : 0x0d (AP) +I (172) octal_psram: dev id : 0x02 (generation 3) +I (173) octal_psram: density : 0x03 (64 Mbit) +I (177) octal_psram: good-die : 0x01 (Pass) +I (183) octal_psram: Latency : 0x01 (Fixed) +I (188) octal_psram: VCC : 0x01 (3V) +I (193) octal_psram: SRF : 0x01 (Fast Refresh) +I (199) octal_psram: BurstType : 0x01 (Hybrid Wrap) +I (205) octal_psram: BurstLen : 0x01 (32 Byte) +I (210) octal_psram: Readlatency : 0x02 (10 cycles@Fixed) +I (216) octal_psram: DriveStrength: 0x00 (1/1) +I (222) MSPI Timing: PSRAM timing tuning index: 5 +I (227) esp_psram: Found 8MB PSRAM device +I (231) esp_psram: Speed: 80MHz +I (235) cpu_start: Multicore app +I (541) esp_psram: SPI SRAM memory test OK +I (550) cpu_start: Pro cpu start user code +I (550) cpu_start: cpu freq: 240000000 Hz +I (550) app_init: Application information: +I (553) app_init: Project name: SIM_S3_1 +I (558) app_init: App version: 1f3f204-dirty +I (563) app_init: Compile time: Sep 26 2025 10:50:57 +I (569) app_init: ELF file SHA256: 3fd249d66... +I (574) app_init: ESP-IDF: v5.5 +I (579) efuse_init: Min chip rev: v0.0 +I (584) efuse_init: Max chip rev: v0.99  +I (589) efuse_init: Chip rev: v0.2 +I (593) heap_init: Initializing. RAM available for dynamic allocation: +I (601) heap_init: At 3FC9F2F8 len 0004A418 (297 KiB): RAM +I (607) heap_init: At 3FCE9710 len 00005724 (21 KiB): RAM +I (613) heap_init: At 600FE020 len 00001FC8 (7 KiB): RTCRAM +I (619) esp_psram: Adding pool of 8192K of PSRAM memory to heap allocator +I (627) spi_flash: detected chip: boya +I (631) spi_flash: flash io: dio +W (635) i2c: This driver is an old driver, please migrate your application code to adapt `driver/i2c_master.h` +I (646) sleep_gpio: Configure to isolate all GPIO pins in sleep state +I (653) sleep_gpio: Enable automatic switching of GPIO sleep configuration +I (660) coexist: coex firmware version: 831ec70 +I (669) coexist: coexist rom version e7ae62f +I (671) main_task: Started on CPU0 +I (681) esp_psram: Reserving pool of 32K of internal memory for DMA/internal allocations +I (681) main_task: Calling app_main() +I (691) MAIN: Starting ECG application... +I (691) SPI2: SPI and AD5328BRUZ initialized successfully. +I (701) MAIN: Button initialized on GPIO 0 +I (701) MAIN: Hardware initialization completed. +I (711) MAIN: === Signal Generation Test === +I (711) SINE_GEN: Sine wave frequency set to: 100.0 Hz +I (721) SINE_GEN: Sine wave amplitude set to: 5.0 mV +I (721) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (731) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (741) MAIN: Started sine wave generator: 100Hz, 5mV +I (741) MAIN: Signal timer started at 20kHz (50us period) +I (751) MAIN: Starting LED status indicator... +I (1781) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (2831) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (3871) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (4911) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (5951) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (6991) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (8031) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (9081) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (10121) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (11161) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (12201) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (13241) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (14281) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x1 (POWERON),boot:0x2b (SPI_FAST_FLASH_BOOT) +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce2820,len:0x159c +load:0x403c8700,len:0xd24 +load:0x403cb700,len:0x2f48 +entry 0x403c8924 +I (24) boot: ESP-IDF v5.5 2nd stage bootloader +I (25) boot: compile time Sep 25 2025 10:34:17 +I (25) boot: Multicore bootloader +I (25) boot: chip revision: v0.2 +I (28) boot: efuse block revision: v1.3 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (35) boot.esp32s3: SPI Mode : DIO +I (39) boot.esp32s3: SPI Flash Size : 8MB +I (43) boot: Enabling RNG early entropy source... +I (47) boot: Partition Table: +I (50) boot: ## Label Usage Type ST Offset Length +I (56) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (62) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (69) boot: 2 factory factory app 00 00 00010000 00300000 +I (75) boot: 3 storage Unknown data 01 82 00310000 00300000 +I (82) boot: End of partition table +I (85) esp_image: segment 0: paddr=00010020 vaddr=3c030020 size=0efa4h ( 61348) map +I (104) esp_image: segment 1: paddr=0001efcc vaddr=3fc9b600 size=0104ch ( 4172) load +I (105) esp_image: segment 2: paddr=00020020 vaddr=42000020 size=23168h (143720) map +I (133) esp_image: segment 3: paddr=00043190 vaddr=3fc9c64c size=0228ch ( 8844) load +I (135) esp_image: segment 4: paddr=00045424 vaddr=40378000 size=135e8h ( 79336) load +I (154) esp_image: segment 5: paddr=00058a14 vaddr=600fe000 size=00020h ( 32) load +I (162) boot: Loaded app from partition at offset 0x10000 +I (162) boot: Disabling RNG early entropy source... +I (172) octal_psram: vendor id : 0x0d (AP) +I (172) octal_psram: dev id : 0x02 (generation 3) +I (173) octal_psram: density : 0x03 (64 Mbit) +I (177) octal_psram: good-die : 0x01 (Pass) +I (183) octal_psram: Latency : 0x01 (Fixed) +I (188) octal_psram: VCC : 0x01 (3V) +I (193) octal_psram: SRF : 0x01 (Fast Refresh) +I (199) octal_psram: BurstType : 0x01 (Hybrid Wrap) +I (205) octal_psram: BurstLen : 0x01 (32 Byte) +I (210) octal_psram: Readlatency : 0x02 (10 cycles@Fixed) +I (216) octal_psram: DriveStrength: 0x00 (1/1) +I (222) MSPI Timing: PSRAM timing tuning index: 5 +I (227) esp_psram: Found 8MB PSRAM device +I (231) esp_psram: Speed: 80MHz +I (235) cpu_start: Multicore app +I (541) esp_psram: SPI SRAM memory test OK +I (550) cpu_start: Pro cpu start user code +I (550) cpu_start: cpu freq: 240000000 Hz +I (550) app_init: Application information: +I (553) app_init: Project name: SIM_S3_1 +I (558) app_init: App version: 1f3f204-dirty +I (563) app_init: Compile time: Sep 26 2025 10:50:57 +I (569) app_init: ELF file SHA256: 3fd249d66... +I (574) app_init: ESP-IDF: v5.5 +I (579) efuse_init: Min chip rev: v0.0 +I (584) efuse_init: Max chip rev: v0.99  +I (589) efuse_init: Chip rev: v0.2 +I (593) heap_init: Initializing. RAM available for dynamic allocation: +I (601) heap_init: At 3FC9F2F8 len 0004A418 (297 KiB): RAM +I (607) heap_init: At 3FCE9710 len 00005724 (21 KiB): RAM +I (613) heap_init: At 600FE020 len 00001FC8 (7 KiB): RTCRAM +I (619) esp_psram: Adding pool of 8192K of PSRAM memory to heap allocator +I (627) spi_flash: detected chip: boya +I (631) spi_flash: flash io: dio +W (635) i2c: This driver is an old driver, please migrate your application code to adapt `driver/i2c_master.h` +I (646) sleep_gpio: Configure to isolate all GPIO pins in sleep state +I (653) sleep_gpio: Enable automatic switching of GPIO sleep configuration +I (660) coexist: coex firmware version: 831ec70 +I (669) coexist: coexist rom version e7ae62f +I (671) main_task: Started on CPU0 +I (681) esp_psram: Reserving pool of 32K of internal memory for DMA/internal allocations +I (681) main_task: Calling app_main() +I (691) MAIN: Starting ECG application... +I (691) SPI2: SPI and AD5328BRUZ initialized successfully. +I (701) MAIN: Button initialized on GPIO 0 +I (701) MAIN: Hardware initialization completed. +I (711) MAIN: === Signal Generation Test === +I (711) SINE_GEN: Sine wave frequency set to: 100.0 Hz +I (721) SINE_GEN: Sine wave amplitude set to: 5.0 mV +I (721) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (731) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (741) MAIN: Started sine wave generator: 100Hz, 5mV +I (741) MAIN: Signal timer started at 20kHz (50us period) +I (751) MAIN: Starting LED status indicator... +I (1781) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (2831) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (3871) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (4911) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (5951) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (6991) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (8031) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (9081) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (10121) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (11161) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (12201) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (13241) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (14281) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (15331) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (16371) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (17411) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (18451) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (19491) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (20531) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (20761) MAIN: DRAM Total: 367363 bytes, Used: 56732 bytes, Free: 310631 bytes, DRAM_Largest_block: 249856 bytes +I (20761) MAIN: DRAM Used: 15.44% +I (20761) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (20771) MAIN: PSRAM Used: 0.03% +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x1 (POWERON),boot:0x2b (SPI_FAST_FLASH_BOOT) +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce2820,len:0x159c +load:0x403c8700,len:0xd24 +load:0x403cb700,len:0x2f48 +entry 0x403c8924 +I (24) boot: ESP-IDF v5.5 2nd stage bootloader +I (25) boot: compile time Sep 25 2025 10:34:17 +I (25) boot: Multicore bootloader +I (25) boot: chip revision: v0.2 +I (28) boot: efuse block revision: v1.3 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (35) boot.esp32s3: SPI Mode : DIO +I (39) boot.esp32s3: SPI Flash Size : 8MB +I (43) boot: Enabling RNG early entropy source... +I (47) boot: Partition Table: +I (50) boot: ## Label Usage Type ST Offset Length +I (56) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (62) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (69) boot: 2 factory factory app 00 00 00010000 00300000 +I (75) boot: 3 storage Unknown data 01 82 00310000 00300000 +I (82) boot: End of partition table +I (85) esp_image: segment 0: paddr=00010020 vaddr=3c030020 size=0efa4h ( 61348) map +I (104) esp_image: segment 1: paddr=0001efcc vaddr=3fc9b600 size=0104ch ( 4172) load +I (105) esp_image: segment 2: paddr=00020020 vaddr=42000020 size=23168h (143720) map +I (133) esp_image: segment 3: paddr=00043190 vaddr=3fc9c64c size=0228ch ( 8844) load +I (135) esp_image: segment 4: paddr=00045424 vaddr=40378000 size=135e8h ( 79336) load +I (154) esp_image: segment 5: paddr=00058a14 vaddr=600fe000 size=00020h ( 32) load +I (162) boot: Loaded app from partition at offset 0x10000 +I (162) boot: Disabling RNG early entropy source... +I (172) octal_psram: vendor id : 0x0d (AP) +I (172) octal_psram: dev id : 0x02 (generation 3) +I (173) octal_psram: density : 0x03 (64 Mbit) +I (177) octal_psram: good-die : 0x01 (Pass) +I (183) octal_psram: Latency : 0x01 (Fixed) +I (188) octal_psram: VCC : 0x01 (3V) +I (193) octal_psram: SRF : 0x01 (Fast Refresh) +I (199) octal_psram: BurstType : 0x01 (Hybrid Wrap) +I (205) octal_psram: BurstLen : 0x01 (32 Byte) +I (210) octal_psram: Readlatency : 0x02 (10 cycles@Fixed) +I (216) octal_psram: DriveStrength: 0x00 (1/1) +I (222) MSPI Timing: PSRAM timing tuning index: 5 +I (227) esp_psram: Found 8MB PSRAM device +I (231) esp_psram: Speed: 80MHz +I (235) cpu_start: Multicore app +I (541) esp_psram: SPI SRAM memory test OK +I (550) cpu_start: Pro cpu start user code +I (550) cpu_start: cpu freq: 240000000 Hz +I (550) app_init: Application information: +I (553) app_init: Project name: SIM_S3_1 +I (558) app_init: App version: 1f3f204-dirty +I (563) app_init: Compile time: Sep 26 2025 10:50:57 +I (569) app_init: ELF file SHA256: 3fd249d66... +I (574) app_init: ESP-IDF: v5.5 +I (579) efuse_init: Min chip rev: v0.0 +I (584) efuse_init: Max chip rev: v0.99  +I (589) efuse_init: Chip rev: v0.2 +I (593) heap_init: Initializing. RAM available for dynamic allocation: +I (601) heap_init: At 3FC9F2F8 len 0004A418 (297 KiB): RAM +I (607) heap_init: At 3FCE9710 len 00005724 (21 KiB): RAM +I (613) heap_init: At 600FE020 len 00001FC8 (7 KiB): RTCRAM +I (619) esp_psram: Adding pool of 8192K of PSRAM memory to heap allocator +I (627) spi_flash: detected chip: boya +I (631) spi_flash: flash io: dio +W (635) i2c: This driver is an old driver, please migrate your application code to adapt `driver/i2c_master.h` +I (646) sleep_gpio: Configure to isolate all GPIO pins in sleep state +I (653) sleep_gpio: Enable automatic switching of GPIO sleep configuration +I (660) coexist: coex firmware version: 831ec70 +I (669) coexist: coexist rom version e7ae62f +I (671) main_task: Started on CPU0 +I (681) esp_psram: Reserving pool of 32K of internal memory for DMA/internal allocations +I (681) main_task: Calling app_main() +I (691) MAIN: Starting ECG application... +I (691) SPI2: SPI and AD5328BRUZ initialized successfully. +I (701) MAIN: Button initialized on GPIO 0 +I (701) MAIN: Hardware initialization completed. +I (711) MAIN: === Signal Generation Test === +I (711) SINE_GEN: Sine wave frequency set to: 100.0 Hz +I (721) SINE_GEN: Sine wave amplitude set to: 5.0 mV +I (721) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (731) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (741) MAIN: Started sine wave generator: 100Hz, 5mV +I (741) MAIN: Signal timer started at 20kHz (50us period) +I (751) MAIN: Starting LED status indicator... +I (1781) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (2831) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (3871) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (4911) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (5951) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (6991) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (8041) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (9081) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (10121) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (11161) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (12201) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (13241) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (14291) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (15331) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (16371) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (17411) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (18451) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (19491) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (20541) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (20761) MAIN: DRAM Total: 367363 bytes, Used: 56732 bytes, Free: 310631 bytes, DRAM_Largest_block: 249856 bytes +I (20761) MAIN: DRAM Used: 15.44% +I (20761) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (20771) MAIN: PSRAM Used: 0.03% +I (21581) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (22621) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (23661) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (24701) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (25741) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (26791) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (27831) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (28871) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (29911) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (30951) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (31991) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (33041) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (34081) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (35121) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (36161) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (37201) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (38251) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (39291) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (40331) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (40781) MAIN: DRAM Total: 367363 bytes, Used: 56732 bytes, Free: 310631 bytes, DRAM_Largest_block: 249856 bytes +I (40781) MAIN: DRAM Used: 15.44% +I (40781) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (40791) MAIN: PSRAM Used: 0.03% +I (41371) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (42411) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (43451) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (44501) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (45541) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (46581) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (47621) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (48661) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (49701) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (50751) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (51791) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (52831) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (53871) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (54911) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (55951) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (57001) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (58041) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (58801) SINE_GEN: Sine generator stopped +I (58801) MAIN: Switched to ECG mode +I (58861) ECG_DEBUG: Max ECG value before offset: 0.007V +I (58921) ECG_DEBUG: Max ECG value before offset: 0.026V +I (58981) ECG_DEBUG: Max ECG value before offset: 0.026V +I (59041) ECG_DEBUG: Max ECG value before offset: 0.007V +I (59101) ECG_DEBUG: Max ECG value before offset: 0.029V +I (59131) MAIN: Generated 20000 samples at 20kHz (ECG) +I (59161) ECG_DEBUG: Max ECG value before offset: 0.119V +I (59221) ECG_DEBUG: Max ECG value before offset: 0.030V +I (59281) ECG_DEBUG: Max ECG value before offset: 0.007V +I (59341) ECG_DEBUG: Max ECG value before offset: 0.032V +I (59401) ECG_DEBUG: Max ECG value before offset: 0.053V +I (59461) ECG_DEBUG: Max ECG value before offset: 0.053V +I (59521) ECG_DEBUG: Max ECG value before offset: 0.032V +I (59581) ECG_DEBUG: Max ECG value before offset: 0.007V +I (59651) ECG_DEBUG: Max ECG value before offset: 0.001V +I (59711) ECG_DEBUG: Max ECG value before offset: 0.000V +I (59771) ECG_DEBUG: Max ECG value before offset: 0.000V +I (59831) ECG_DEBUG: Max ECG value before offset: 0.007V +I (59891) ECG_DEBUG: Max ECG value before offset: 0.026V +I (59951) ECG_DEBUG: Max ECG value before offset: 0.026V +I (60011) ECG_DEBUG: Max ECG value before offset: 0.007V +I (60071) ECG_DEBUG: Max ECG value before offset: 0.029V +I (60131) ECG_DEBUG: Max ECG value before offset: 0.119V +I (60191) ECG_DEBUG: Max ECG value before offset: 0.030V +I (60251) ECG_DEBUG: Max ECG value before offset: 0.007V +I (60311) ECG_DEBUG: Max ECG value before offset: 0.032V +I (60341) MAIN: Generated 20000 samples at 20kHz (ECG) +I (60371) ECG_DEBUG: Max ECG value before offset: 0.053V +I (60441) ECG_DEBUG: Max ECG value before offset: 0.053V +I (60501) ECG_DEBUG: Max ECG value before offset: 0.032V +I (60561) ECG_DEBUG: Max ECG value before offset: 0.007V +I (60621) ECG_DEBUG: Max ECG value before offset: 0.001V +I (60681) ECG_DEBUG: Max ECG value before offset: 0.000V +I (60741) ECG_DEBUG: Max ECG value before offset: 0.000V +I (60801) MAIN: DRAM Total: 367363 bytes, Used: 57096 bytes, Free: 310267 bytes, DRAM_Largest_block: 249856 bytes +I (60801) MAIN: DRAM Used: 15.54% +I (60801) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (60811) ECG_DEBUG: Max ECG value before offset: 0.007V +I (60821) MAIN: PSRAM Used: 0.03% +I (60831) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (60831) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (60841) MAIN: Switched to sine wave mode +I (61471) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (62511) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (62841) SINE_GEN: Sine generator stopped +I (62841) MAIN: Switched to ECG mode +I (62891) ECG_DEBUG: Max ECG value before offset: 0.008V +I (62951) ECG_DEBUG: Max ECG value before offset: 0.026V +I (63011) ECG_DEBUG: Max ECG value before offset: 0.026V +I (63071) ECG_DEBUG: Max ECG value before offset: 0.008V +I (63131) ECG_DEBUG: Max ECG value before offset: 0.029V +I (63191) ECG_DEBUG: Max ECG value before offset: 0.119V +I (63251) ECG_DEBUG: Max ECG value before offset: 0.039V +I (63311) ECG_DEBUG: Max ECG value before offset: 0.006V +I (63371) ECG_DEBUG: Max ECG value before offset: 0.029V +I (63431) ECG_DEBUG: Max ECG value before offset: 0.052V +I (63501) ECG_DEBUG: Max ECG value before offset: 0.053V +I (63561) ECG_DEBUG: Max ECG value before offset: 0.034V +I (63621) ECG_DEBUG: Max ECG value before offset: 0.008V +I (63671) MAIN: Generated 20000 samples at 20kHz (ECG) +I (63681) ECG_DEBUG: Max ECG value before offset: 0.001V +I (63741) ECG_DEBUG: Max ECG value before offset: 0.000V +I (63801) ECG_DEBUG: Max ECG value before offset: 0.000V +I (63861) ECG_DEBUG: Max ECG value before offset: 0.005V +I (63931) ECG_DEBUG: Max ECG value before offset: 0.026V +I (63991) ECG_DEBUG: Max ECG value before offset: 0.026V +I (64051) ECG_DEBUG: Max ECG value before offset: 0.008V +I (64111) ECG_DEBUG: Max ECG value before offset: 0.029V +I (64171) ECG_DEBUG: Max ECG value before offset: 0.119V +I (64231) ECG_DEBUG: Max ECG value before offset: 0.039V +I (64291) ECG_DEBUG: Max ECG value before offset: 0.006V +I (64351) ECG_DEBUG: Max ECG value before offset: 0.029V +I (64411) ECG_DEBUG: Max ECG value before offset: 0.052V +I (64471) ECG_DEBUG: Max ECG value before offset: 0.053V +I (64531) ECG_DEBUG: Max ECG value before offset: 0.034V +I (64591) ECG_DEBUG: Max ECG value before offset: 0.008V +I (64661) ECG_DEBUG: Max ECG value before offset: 0.001V +I (64721) ECG_DEBUG: Max ECG value before offset: 0.000V +I (64781) ECG_DEBUG: Max ECG value before offset: 0.000V +I (64841) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (64841) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (64851) MAIN: Switched to sine wave mode +I (64881) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (65921) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (66961) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (68011) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (68851) SINE_GEN: Sine generator stopped +I (68851) MAIN: Switched to ECG mode +I (68851) ECG_DEBUG: Max ECG value before offset: 0.004V +I (68911) ECG_DEBUG: Max ECG value before offset: 0.008V +I (68971) ECG_DEBUG: Max ECG value before offset: 0.026V +I (69031) ECG_DEBUG: Max ECG value before offset: 0.026V +I (69081) MAIN: Generated 20000 samples at 20kHz (ECG) +I (69091) ECG_DEBUG: Max ECG value before offset: 0.005V +I (69151) ECG_DEBUG: Max ECG value before offset: 0.029V +I (69211) ECG_DEBUG: Max ECG value before offset: 0.119V +I (69271) ECG_DEBUG: Max ECG value before offset: 0.019V +I (69331) ECG_DEBUG: Max ECG value before offset: 0.008V +I (69391) ECG_DEBUG: Max ECG value before offset: 0.035V +I (69461) ECG_DEBUG: Max ECG value before offset: 0.053V +I (69521) ECG_DEBUG: Max ECG value before offset: 0.052V +I (69581) ECG_DEBUG: Max ECG value before offset: 0.029V +I (69641) ECG_DEBUG: Max ECG value before offset: 0.006V +I (69701) ECG_DEBUG: Max ECG value before offset: 0.000V +I (69761) ECG_DEBUG: Max ECG value before offset: 0.000V +I (69821) ECG_DEBUG: Max ECG value before offset: 0.000V +I (69881) ECG_DEBUG: Max ECG value before offset: 0.008V +I (69951) ECG_DEBUG: Max ECG value before offset: 0.026V +I (70011) ECG_DEBUG: Max ECG value before offset: 0.026V +I (70071) ECG_DEBUG: Max ECG value before offset: 0.005V +I (70131) ECG_DEBUG: Max ECG value before offset: 0.029V +I (70191) ECG_DEBUG: Max ECG value before offset: 0.119V +I (70251) ECG_DEBUG: Max ECG value before offset: 0.019V +I (70291) MAIN: Generated 20000 samples at 20kHz (ECG) +I (70311) ECG_DEBUG: Max ECG value before offset: 0.008V +I (70371) ECG_DEBUG: Max ECG value before offset: 0.035V +I (70431) ECG_DEBUG: Max ECG value before offset: 0.053V +I (70491) ECG_DEBUG: Max ECG value before offset: 0.052V +I (70551) ECG_DEBUG: Max ECG value before offset: 0.029V +I (70611) ECG_DEBUG: Max ECG value before offset: 0.006V +I (70681) ECG_DEBUG: Max ECG value before offset: 0.000V +I (70741) ECG_DEBUG: Max ECG value before offset: 0.000V +I (70801) ECG_DEBUG: Max ECG value before offset: 0.000V +I (70861) ECG_DEBUG: Max ECG value before offset: 0.008V +I (70921) ECG_DEBUG: Max ECG value before offset: 0.026V +I (70981) ECG_DEBUG: Max ECG value before offset: 0.026V +I (71041) ECG_DEBUG: Max ECG value before offset: 0.005V +I (71101) ECG_DEBUG: Max ECG value before offset: 0.029V +I (71161) ECG_DEBUG: Max ECG value before offset: 0.119V +I (71221) ECG_DEBUG: Max ECG value before offset: 0.019V +I (71281) ECG_DEBUG: Max ECG value before offset: 0.008V +I (71351) ECG_DEBUG: Max ECG value before offset: 0.035V +I (71411) ECG_DEBUG: Max ECG value before offset: 0.053V +I (71471) ECG_DEBUG: Max ECG value before offset: 0.052V +I (71521) MAIN: Generated 20000 samples at 20kHz (ECG) +I (71531) ECG_DEBUG: Max ECG value before offset: 0.029V +I (71591) ECG_DEBUG: Max ECG value before offset: 0.006V +I (71651) ECG_DEBUG: Max ECG value before offset: 0.000V +I (71711) ECG_DEBUG: Max ECG value before offset: 0.000V +I (71781) ECG_DEBUG: Max ECG value before offset: 0.000V +I (71841) ECG_DEBUG: Max ECG value before offset: 0.008V +I (71901) ECG_DEBUG: Max ECG value before offset: 0.026V +I (71961) ECG_DEBUG: Max ECG value before offset: 0.026V +I (72021) ECG_DEBUG: Max ECG value before offset: 0.005V +I (72081) ECG_DEBUG: Max ECG value before offset: 0.029V +I (72141) ECG_DEBUG: Max ECG value before offset: 0.119V +I (72201) ECG_DEBUG: Max ECG value before offset: 0.019V +I (72261) ECG_DEBUG: Max ECG value before offset: 0.008V +I (72321) ECG_DEBUG: Max ECG value before offset: 0.035V +I (72381) ECG_DEBUG: Max ECG value before offset: 0.053V +I (72441) ECG_DEBUG: Max ECG value before offset: 0.052V +I (72511) ECG_DEBUG: Max ECG value before offset: 0.029V +I (72571) ECG_DEBUG: Max ECG value before offset: 0.006V +I (72631) ECG_DEBUG: Max ECG value before offset: 0.000V +I (72691) ECG_DEBUG: Max ECG value before offset: 0.000V +I (72741) MAIN: Generated 20000 samples at 20kHz (ECG) +I (72751) ECG_DEBUG: Max ECG value before offset: 0.000V +I (72811) ECG_DEBUG: Max ECG value before offset: 0.008V +I (72881) ECG_DEBUG: Max ECG value before offset: 0.026V +I (72941) ECG_DEBUG: Max ECG value before offset: 0.026V +I (73001) ECG_DEBUG: Max ECG value before offset: 0.005V +I (73061) ECG_DEBUG: Max ECG value before offset: 0.029V +I (73121) ECG_DEBUG: Max ECG value before offset: 0.119V +I (73181) ECG_DEBUG: Max ECG value before offset: 0.019V +I (73241) ECG_DEBUG: Max ECG value before offset: 0.008V +I (73301) ECG_DEBUG: Max ECG value before offset: 0.035V +I (73361) ECG_DEBUG: Max ECG value before offset: 0.053V +I (73421) ECG_DEBUG: Max ECG value before offset: 0.052V +I (73481) ECG_DEBUG: Max ECG value before offset: 0.029V +I (73551) ECG_DEBUG: Max ECG value before offset: 0.006V +I (73611) ECG_DEBUG: Max ECG value before offset: 0.000V +I (73671) ECG_DEBUG: Max ECG value before offset: 0.000V +I (73731) ECG_DEBUG: Max ECG value before offset: 0.000V +I (73791) ECG_DEBUG: Max ECG value before offset: 0.008V +I (73851) ECG_DEBUG: Max ECG value before offset: 0.026V +I (73911) ECG_DEBUG: Max ECG value before offset: 0.026V +I (73961) MAIN: Generated 20000 samples at 20kHz (ECG) +I (73971) ECG_DEBUG: Max ECG value before offset: 0.005V +I (74031) ECG_DEBUG: Max ECG value before offset: 0.029V +I (74091) ECG_DEBUG: Max ECG value before offset: 0.119V +I (74161) ECG_DEBUG: Max ECG value before offset: 0.019V +I (74221) ECG_DEBUG: Max ECG value before offset: 0.008V +I (74281) ECG_DEBUG: Max ECG value before offset: 0.035V +I (74341) ECG_DEBUG: Max ECG value before offset: 0.053V +I (74401) ECG_DEBUG: Max ECG value before offset: 0.052V +I (74461) ECG_DEBUG: Max ECG value before offset: 0.029V +I (74521) ECG_DEBUG: Max ECG value before offset: 0.006V +I (74581) ECG_DEBUG: Max ECG value before offset: 0.000V +I (74651) ECG_DEBUG: Max ECG value before offset: 0.000V +I (74711) ECG_DEBUG: Max ECG value before offset: 0.000V +I (74771) ECG_DEBUG: Max ECG value before offset: 0.008V +I (74831) ECG_DEBUG: Max ECG value before offset: 0.026V +I (74891) ECG_DEBUG: Max ECG value before offset: 0.026V +I (74951) ECG_DEBUG: Max ECG value before offset: 0.005V +I (75011) ECG_DEBUG: Max ECG value before offset: 0.029V +I (75071) ECG_DEBUG: Max ECG value before offset: 0.119V +I (75131) ECG_DEBUG: Max ECG value before offset: 0.019V +I (75181) MAIN: Generated 20000 samples at 20kHz (ECG) +I (75191) ECG_DEBUG: Max ECG value before offset: 0.008V +I (75251) ECG_DEBUG: Max ECG value before offset: 0.035V +I (75321) ECG_DEBUG: Max ECG value before offset: 0.053V +I (75381) ECG_DEBUG: Max ECG value before offset: 0.052V +I (75441) ECG_DEBUG: Max ECG value before offset: 0.029V +I (75501) ECG_DEBUG: Max ECG value before offset: 0.006V +I (75561) ECG_DEBUG: Max ECG value before offset: 0.000V +I (75621) ECG_DEBUG: Max ECG value before offset: 0.000V +I (75691) ECG_DEBUG: Max ECG value before offset: 0.000V +I (75751) ECG_DEBUG: Max ECG value before offset: 0.008V +I (75811) ECG_DEBUG: Max ECG value before offset: 0.026V +I (75871) ECG_DEBUG: Max ECG value before offset: 0.026V +I (75931) ECG_DEBUG: Max ECG value before offset: 0.005V +I (75991) ECG_DEBUG: Max ECG value before offset: 0.029V +I (76051) ECG_DEBUG: Max ECG value before offset: 0.119V +I (76111) ECG_DEBUG: Max ECG value before offset: 0.019V +I (76171) ECG_DEBUG: Max ECG value before offset: 0.008V +I (76231) ECG_DEBUG: Max ECG value before offset: 0.035V +I (76291) ECG_DEBUG: Max ECG value before offset: 0.053V +I (76351) ECG_DEBUG: Max ECG value before offset: 0.052V +I (76401) MAIN: Generated 20000 samples at 20kHz (ECG) +I (76421) ECG_DEBUG: Max ECG value before offset: 0.029V +I (76481) ECG_DEBUG: Max ECG value before offset: 0.006V +I (76541) ECG_DEBUG: Max ECG value before offset: 0.000V +I (76601) ECG_DEBUG: Max ECG value before offset: 0.000V +I (76661) ECG_DEBUG: Max ECG value before offset: 0.000V +I (76721) ECG_DEBUG: Max ECG value before offset: 0.008V +I (76791) ECG_DEBUG: Max ECG value before offset: 0.026V +I (76851) ECG_DEBUG: Max ECG value before offset: 0.026V +I (76911) ECG_DEBUG: Max ECG value before offset: 0.005V +I (76971) ECG_DEBUG: Max ECG value before offset: 0.029V +I (77031) ECG_DEBUG: Max ECG value before offset: 0.119V +I (77091) ECG_DEBUG: Max ECG value before offset: 0.019V +I (77151) ECG_DEBUG: Max ECG value before offset: 0.008V +I (77211) ECG_DEBUG: Max ECG value before offset: 0.035V +I (77271) ECG_DEBUG: Max ECG value before offset: 0.053V +I (77331) ECG_DEBUG: Max ECG value before offset: 0.052V +I (77391) ECG_DEBUG: Max ECG value before offset: 0.029V +I (77461) ECG_DEBUG: Max ECG value before offset: 0.006V +I (77521) ECG_DEBUG: Max ECG value before offset: 0.000V +I (77581) ECG_DEBUG: Max ECG value before offset: 0.000V +I (77631) MAIN: Generated 20000 samples at 20kHz (ECG) +I (77641) ECG_DEBUG: Max ECG value before offset: 0.000V +I (77701) ECG_DEBUG: Max ECG value before offset: 0.008V +I (77761) ECG_DEBUG: Max ECG value before offset: 0.026V +I (77821) ECG_DEBUG: Max ECG value before offset: 0.026V +I (77891) ECG_DEBUG: Max ECG value before offset: 0.005V +I (77951) ECG_DEBUG: Max ECG value before offset: 0.029V +I (78011) ECG_DEBUG: Max ECG value before offset: 0.119V +I (78071) ECG_DEBUG: Max ECG value before offset: 0.019V +I (78131) ECG_DEBUG: Max ECG value before offset: 0.008V +I (78191) ECG_DEBUG: Max ECG value before offset: 0.035V +I (78251) ECG_DEBUG: Max ECG value before offset: 0.053V +I (78311) ECG_DEBUG: Max ECG value before offset: 0.052V +I (78371) ECG_DEBUG: Max ECG value before offset: 0.029V +I (78431) ECG_DEBUG: Max ECG value before offset: 0.006V +I (78501) ECG_DEBUG: Max ECG value before offset: 0.000V +I (78561) ECG_DEBUG: Max ECG value before offset: 0.000V +I (78621) ECG_DEBUG: Max ECG value before offset: 0.000V +I (78681) ECG_DEBUG: Max ECG value before offset: 0.008V +I (78741) ECG_DEBUG: Max ECG value before offset: 0.026V +I (78801) ECG_DEBUG: Max ECG value before offset: 0.026V +I (78851) MAIN: Generated 20000 samples at 20kHz (ECG) +I (78851) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (78861) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (78861) MAIN: Switched to sine wave mode +I (79891) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (80861) MAIN: DRAM Total: 367363 bytes, Used: 57096 bytes, Free: 310267 bytes, DRAM_Largest_block: 249856 bytes +I (80861) MAIN: DRAM Used: 15.54% +I (80861) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (80871) MAIN: PSRAM Used: 0.03% +I (80881) SINE_GEN: Sine generator stopped +I (80881) MAIN: Switched to ECG mode +I (80901) ECG_DEBUG: Max ECG value before offset: 0.005V +I (80941) MAIN: Generated 20000 samples at 20kHz (ECG) +I (80961) ECG_DEBUG: Max ECG value before offset: 0.013V +I (81021) ECG_DEBUG: Max ECG value before offset: 0.026V +I (81081) ECG_DEBUG: Max ECG value before offset: 0.023V +I (81141) ECG_DEBUG: Max ECG value before offset: 0.003V +I (81201) ECG_DEBUG: Max ECG value before offset: 0.099V +I (81261) ECG_DEBUG: Max ECG value before offset: 0.119V +I (81321) ECG_DEBUG: Max ECG value before offset: 0.002V +I (81381) ECG_DEBUG: Max ECG value before offset: 0.012V +I (81441) ECG_DEBUG: Max ECG value before offset: 0.041V +I (81501) ECG_DEBUG: Max ECG value before offset: 0.053V +I (81561) ECG_DEBUG: Max ECG value before offset: 0.050V +I (81631) ECG_DEBUG: Max ECG value before offset: 0.023V +I (81691) ECG_DEBUG: Max ECG value before offset: 0.004V +I (81751) ECG_DEBUG: Max ECG value before offset: 0.000V +I (81811) ECG_DEBUG: Max ECG value before offset: 0.000V +I (81871) ECG_DEBUG: Max ECG value before offset: 0.000V +I (81931) ECG_DEBUG: Max ECG value before offset: 0.013V +I (81991) ECG_DEBUG: Max ECG value before offset: 0.026V +I (82051) ECG_DEBUG: Max ECG value before offset: 0.023V +I (82111) ECG_DEBUG: Max ECG value before offset: 0.003V +I (82161) MAIN: Generated 20000 samples at 20kHz (ECG) +I (82171) ECG_DEBUG: Max ECG value before offset: 0.099V +I (82231) ECG_DEBUG: Max ECG value before offset: 0.119V +I (82291) ECG_DEBUG: Max ECG value before offset: 0.002V +I (82351) ECG_DEBUG: Max ECG value before offset: 0.012V +I (82421) ECG_DEBUG: Max ECG value before offset: 0.041V +I (82481) ECG_DEBUG: Max ECG value before offset: 0.053V +I (82541) ECG_DEBUG: Max ECG value before offset: 0.050V +I (82601) ECG_DEBUG: Max ECG value before offset: 0.023V +I (82661) ECG_DEBUG: Max ECG value before offset: 0.004V +I (82721) ECG_DEBUG: Max ECG value before offset: 0.000V +I (82791) ECG_DEBUG: Max ECG value before offset: 0.000V +I (82851) ECG_DEBUG: Max ECG value before offset: 0.000V +I (82911) ECG_DEBUG: Max ECG value before offset: 0.013V +I (82971) ECG_DEBUG: Max ECG value before offset: 0.026V +I (83031) ECG_DEBUG: Max ECG value before offset: 0.023V +I (83091) ECG_DEBUG: Max ECG value before offset: 0.003V +I (83151) ECG_DEBUG: Max ECG value before offset: 0.099V +I (83211) ECG_DEBUG: Max ECG value before offset: 0.119V +I (83271) ECG_DEBUG: Max ECG value before offset: 0.002V +I (83331) ECG_DEBUG: Max ECG value before offset: 0.012V +I (83371) MAIN: Generated 20000 samples at 20kHz (ECG) +I (83391) ECG_DEBUG: Max ECG value before offset: 0.041V +I (83451) ECG_DEBUG: Max ECG value before offset: 0.053V +I (83521) ECG_DEBUG: Max ECG value before offset: 0.050V +I (83581) ECG_DEBUG: Max ECG value before offset: 0.023V +I (83641) ECG_DEBUG: Max ECG value before offset: 0.004V +I (83701) ECG_DEBUG: Max ECG value before offset: 0.000V +I (83761) ECG_DEBUG: Max ECG value before offset: 0.000V +I (83821) ECG_DEBUG: Max ECG value before offset: 0.000V +I (83881) ECG_DEBUG: Max ECG value before offset: 0.013V +I (83951) ECG_DEBUG: Max ECG value before offset: 0.026V +I (84011) ECG_DEBUG: Max ECG value before offset: 0.023V +I (84071) ECG_DEBUG: Max ECG value before offset: 0.003V +I (84131) ECG_DEBUG: Max ECG value before offset: 0.099V +I (84191) ECG_DEBUG: Max ECG value before offset: 0.119V +I (84251) ECG_DEBUG: Max ECG value before offset: 0.002V +I (84311) ECG_DEBUG: Max ECG value before offset: 0.012V +I (84371) ECG_DEBUG: Max ECG value before offset: 0.041V +I (84431) ECG_DEBUG: Max ECG value before offset: 0.053V +I (84491) ECG_DEBUG: Max ECG value before offset: 0.050V +I (84551) ECG_DEBUG: Max ECG value before offset: 0.023V +I (84601) MAIN: Generated 20000 samples at 20kHz (ECG) +I (84621) ECG_DEBUG: Max ECG value before offset: 0.004V +I (84681) ECG_DEBUG: Max ECG value before offset: 0.000V +I (84741) ECG_DEBUG: Max ECG value before offset: 0.000V +I (84801) ECG_DEBUG: Max ECG value before offset: 0.000V +I (84861) ECG_DEBUG: Max ECG value before offset: 0.013V +I (84921) ECG_DEBUG: Max ECG value before offset: 0.026V +I (84981) ECG_DEBUG: Max ECG value before offset: 0.023V +I (85041) ECG_DEBUG: Max ECG value before offset: 0.003V +I (85101) ECG_DEBUG: Max ECG value before offset: 0.099V +I (85161) ECG_DEBUG: Max ECG value before offset: 0.119V +I (85221) ECG_DEBUG: Max ECG value before offset: 0.002V +I (85291) ECG_DEBUG: Max ECG value before offset: 0.012V +I (85351) ECG_DEBUG: Max ECG value before offset: 0.041V +I (85411) ECG_DEBUG: Max ECG value before offset: 0.053V +I (85471) ECG_DEBUG: Max ECG value before offset: 0.050V +I (85531) ECG_DEBUG: Max ECG value before offset: 0.023V +I (85591) ECG_DEBUG: Max ECG value before offset: 0.004V +I (85651) ECG_DEBUG: Max ECG value before offset: 0.000V +I (85721) ECG_DEBUG: Max ECG value before offset: 0.000V +I (85781) ECG_DEBUG: Max ECG value before offset: 0.000V +I (85821) MAIN: Generated 20000 samples at 20kHz (ECG) +I (85841) ECG_DEBUG: Max ECG value before offset: 0.013V +I (85901) ECG_DEBUG: Max ECG value before offset: 0.026V +I (85961) ECG_DEBUG: Max ECG value before offset: 0.023V +I (86021) ECG_DEBUG: Max ECG value before offset: 0.003V +I (86081) ECG_DEBUG: Max ECG value before offset: 0.099V +I (86141) ECG_DEBUG: Max ECG value before offset: 0.119V +I (86201) ECG_DEBUG: Max ECG value before offset: 0.002V +I (86261) ECG_DEBUG: Max ECG value before offset: 0.012V +I (86321) ECG_DEBUG: Max ECG value before offset: 0.041V +I (86391) ECG_DEBUG: Max ECG value before offset: 0.053V +I (86451) ECG_DEBUG: Max ECG value before offset: 0.050V +I (86511) ECG_DEBUG: Max ECG value before offset: 0.023V +I (86571) ECG_DEBUG: Max ECG value before offset: 0.004V +I (86631) ECG_DEBUG: Max ECG value before offset: 0.000V +I (86691) ECG_DEBUG: Max ECG value before offset: 0.000V +I (86761) ECG_DEBUG: Max ECG value before offset: 0.000V +I (86821) ECG_DEBUG: Max ECG value before offset: 0.013V +I (86881) ECG_DEBUG: Max ECG value before offset: 0.026V +I (86891) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (86891) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (86901) MAIN: Switched to sine wave mode +I (87021) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (88061) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (89101) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (90141) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (91191) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (92231) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (93271) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (94311) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (95351) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (96391) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (96901) SINE_GEN: Sine generator stopped +I (96901) MAIN: Switched to ECG mode +I (96951) ECG_DEBUG: Max ECG value before offset: 0.023V +I (97011) ECG_DEBUG: Max ECG value before offset: 0.026V +I (97071) ECG_DEBUG: Max ECG value before offset: 0.026V +I (97131) ECG_DEBUG: Max ECG value before offset: 0.009V +I (97191) ECG_DEBUG: Max ECG value before offset: 0.029V +I (97251) ECG_DEBUG: Max ECG value before offset: 0.119V +I (97311) ECG_DEBUG: Max ECG value before offset: 0.041V +I (97371) ECG_DEBUG: Max ECG value before offset: 0.006V +I (97431) ECG_DEBUG: Max ECG value before offset: 0.028V +I (97491) ECG_DEBUG: Max ECG value before offset: 0.052V +I (97521) MAIN: Generated 20000 samples at 20kHz (ECG) +I (97551) ECG_DEBUG: Max ECG value before offset: 0.053V +I (97621) ECG_DEBUG: Max ECG value before offset: 0.035V +I (97681) ECG_DEBUG: Max ECG value before offset: 0.009V +I (97741) ECG_DEBUG: Max ECG value before offset: 0.001V +I (97801) ECG_DEBUG: Max ECG value before offset: 0.000V +I (97861) ECG_DEBUG: Max ECG value before offset: 0.000V +I (97921) ECG_DEBUG: Max ECG value before offset: 0.005V +I (97981) ECG_DEBUG: Max ECG value before offset: 0.026V +I (98041) ECG_DEBUG: Max ECG value before offset: 0.026V +I (98101) ECG_DEBUG: Max ECG value before offset: 0.009V +I (98161) ECG_DEBUG: Max ECG value before offset: 0.029V +I (98221) ECG_DEBUG: Max ECG value before offset: 0.119V +I (98291) ECG_DEBUG: Max ECG value before offset: 0.041V +I (98351) ECG_DEBUG: Max ECG value before offset: 0.006V +I (98411) ECG_DEBUG: Max ECG value before offset: 0.028V +I (98471) ECG_DEBUG: Max ECG value before offset: 0.052V +I (98531) ECG_DEBUG: Max ECG value before offset: 0.053V +I (98591) ECG_DEBUG: Max ECG value before offset: 0.035V +I (98651) ECG_DEBUG: Max ECG value before offset: 0.009V +I (98711) ECG_DEBUG: Max ECG value before offset: 0.001V +I (98741) MAIN: Generated 20000 samples at 20kHz (ECG) +I (98781) ECG_DEBUG: Max ECG value before offset: 0.000V +I (98841) ECG_DEBUG: Max ECG value before offset: 0.000V +I (98901) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (98901) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (98911) MAIN: Switched to sine wave mode +I (99811) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (100851) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (100911) MAIN: DRAM Total: 367363 bytes, Used: 57096 bytes, Free: 310267 bytes, DRAM_Largest_block: 249856 bytes +I (100911) MAIN: DRAM Used: 15.54% +I (100911) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (100921) MAIN: PSRAM Used: 0.03% +I (100931) SINE_GEN: Sine generator stopped +I (100931) MAIN: Switched to ECG mode +I (100931) ECG_DEBUG: Max ECG value before offset: 0.004V +I (101001) ECG_DEBUG: Max ECG value before offset: 0.008V +I (101061) ECG_DEBUG: Max ECG value before offset: 0.026V +I (101121) ECG_DEBUG: Max ECG value before offset: 0.026V +I (101181) ECG_DEBUG: Max ECG value before offset: 0.006V +I (101241) ECG_DEBUG: Max ECG value before offset: 0.029V +I (101301) ECG_DEBUG: Max ECG value before offset: 0.119V +I (101361) ECG_DEBUG: Max ECG value before offset: 0.022V +I (101421) ECG_DEBUG: Max ECG value before offset: 0.008V +I (101481) ECG_DEBUG: Max ECG value before offset: 0.034V +I (101541) ECG_DEBUG: Max ECG value before offset: 0.053V +I (101611) ECG_DEBUG: Max ECG value before offset: 0.053V +I (101671) ECG_DEBUG: Max ECG value before offset: 0.030V +I (101731) ECG_DEBUG: Max ECG value before offset: 0.006V +I (101791) ECG_DEBUG: Max ECG value before offset: 0.000V +I (101851) ECG_DEBUG: Max ECG value before offset: 0.000V +I (101911) ECG_DEBUG: Max ECG value before offset: 0.000V +I (101971) ECG_DEBUG: Max ECG value before offset: 0.008V +I (102031) ECG_DEBUG: Max ECG value before offset: 0.026V +I (102061) MAIN: Generated 20000 samples at 20kHz (ECG) +I (102101) ECG_DEBUG: Max ECG value before offset: 0.026V +I (102161) ECG_DEBUG: Max ECG value before offset: 0.006V +I (102221) ECG_DEBUG: Max ECG value before offset: 0.029V +I (102281) ECG_DEBUG: Max ECG value before offset: 0.119V +I (102341) ECG_DEBUG: Max ECG value before offset: 0.022V +I (102401) ECG_DEBUG: Max ECG value before offset: 0.008V +I (102461) ECG_DEBUG: Max ECG value before offset: 0.034V +I (102521) ECG_DEBUG: Max ECG value before offset: 0.053V +I (102581) ECG_DEBUG: Max ECG value before offset: 0.053V +I (102641) ECG_DEBUG: Max ECG value before offset: 0.030V +I (102701) ECG_DEBUG: Max ECG value before offset: 0.006V +I (102771) ECG_DEBUG: Max ECG value before offset: 0.000V +I (102831) ECG_DEBUG: Max ECG value before offset: 0.000V +I (102891) ECG_DEBUG: Max ECG value before offset: 0.000V +I (102941) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (102941) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (102951) MAIN: Switched to sine wave mode +I (103231) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (104271) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (104951) SINE_GEN: Sine generator stopped +I (104951) MAIN: Switched to ECG mode +I (104961) ECG_DEBUG: Max ECG value before offset: 0.004V +I (105021) ECG_DEBUG: Max ECG value before offset: 0.012V +I (105081) ECG_DEBUG: Max ECG value before offset: 0.026V +I (105141) ECG_DEBUG: Max ECG value before offset: 0.024V +I (105201) ECG_DEBUG: Max ECG value before offset: 0.003V +I (105261) ECG_DEBUG: Max ECG value before offset: 0.075V +I (105321) ECG_DEBUG: Max ECG value before offset: 0.119V +I (105371) MAIN: Generated 20000 samples at 20kHz (ECG) +I (105381) ECG_DEBUG: Max ECG value before offset: 0.005V +I (105441) ECG_DEBUG: Max ECG value before offset: 0.011V +I (105501) ECG_DEBUG: Max ECG value before offset: 0.039V +I (105561) ECG_DEBUG: Max ECG value before offset: 0.053V +I (105631) ECG_DEBUG: Max ECG value before offset: 0.051V +I (105691) ECG_DEBUG: Max ECG value before offset: 0.024V +I (105751) ECG_DEBUG: Max ECG value before offset: 0.004V +I (105811) ECG_DEBUG: Max ECG value before offset: 0.000V +I (105871) ECG_DEBUG: Max ECG value before offset: 0.000V +I (105931) ECG_DEBUG: Max ECG value before offset: 0.000V +I (105991) ECG_DEBUG: Max ECG value before offset: 0.012V +I (106061) ECG_DEBUG: Max ECG value before offset: 0.026V +I (106121) ECG_DEBUG: Max ECG value before offset: 0.024V +I (106181) ECG_DEBUG: Max ECG value before offset: 0.003V +I (106241) ECG_DEBUG: Max ECG value before offset: 0.075V +I (106301) ECG_DEBUG: Max ECG value before offset: 0.119V +I (106361) ECG_DEBUG: Max ECG value before offset: 0.005V +I (106421) ECG_DEBUG: Max ECG value before offset: 0.011V +I (106481) ECG_DEBUG: Max ECG value before offset: 0.039V +I (106541) ECG_DEBUG: Max ECG value before offset: 0.053V +I (106591) MAIN: Generated 20000 samples at 20kHz (ECG) +I (106601) ECG_DEBUG: Max ECG value before offset: 0.051V +I (106661) ECG_DEBUG: Max ECG value before offset: 0.024V +I (106721) ECG_DEBUG: Max ECG value before offset: 0.004V +I (106791) ECG_DEBUG: Max ECG value before offset: 0.000V +I (106851) ECG_DEBUG: Max ECG value before offset: 0.000V +I (106911) ECG_DEBUG: Max ECG value before offset: 0.000V +I (106951) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (106951) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (106961) MAIN: Switched to sine wave mode +I (107681) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (108731) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (109771) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (110811) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (111851) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (112891) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (113931) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (114981) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (116021) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (117061) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (118101) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (119141) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (120181) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (120961) MAIN: DRAM Total: 367363 bytes, Used: 57096 bytes, Free: 310267 bytes, DRAM_Largest_block: 249856 bytes +I (120961) MAIN: DRAM Used: 15.54% +I (120961) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (120971) MAIN: PSRAM Used: 0.03% +I (121231) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (122271) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (123311) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (124351) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (125391) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (126431) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (127481) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (128521) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (129561) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (130601) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (131641) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (132681) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (132981) SINE_GEN: Sine generator stopped +I (132981) MAIN: Switched to ECG mode +I (133001) ECG_DEBUG: Max ECG value before offset: 0.004V +I (133061) ECG_DEBUG: Max ECG value before offset: 0.016V +I (133121) ECG_DEBUG: Max ECG value before offset: 0.026V +I (133181) ECG_DEBUG: Max ECG value before offset: 0.021V +I (133241) ECG_DEBUG: Max ECG value before offset: 0.002V +I (133301) ECG_DEBUG: Max ECG value before offset: 0.119V +I (133361) ECG_DEBUG: Max ECG value before offset: 0.119V +I (133421) ECG_DEBUG: Max ECG value before offset: 0.002V +I (133481) ECG_DEBUG: Max ECG value before offset: 0.015V +I (133541) ECG_DEBUG: Max ECG value before offset: 0.044V +I (133611) ECG_DEBUG: Max ECG value before offset: 0.053V +I (133671) ECG_DEBUG: Max ECG value before offset: 0.048V +I (133731) ECG_DEBUG: Max ECG value before offset: 0.019V +I (133791) ECG_DEBUG: Max ECG value before offset: 0.003V +I (133851) MAIN: Generated 20000 samples at 20kHz (ECG) +I (133851) ECG_DEBUG: Max ECG value before offset: 0.000V +I (133911) ECG_DEBUG: Max ECG value before offset: 0.000V +I (133971) ECG_DEBUG: Max ECG value before offset: 0.001V +I (134031) ECG_DEBUG: Max ECG value before offset: 0.016V +I (134101) ECG_DEBUG: Max ECG value before offset: 0.026V +I (134161) ECG_DEBUG: Max ECG value before offset: 0.021V +I (134221) ECG_DEBUG: Max ECG value before offset: 0.002V +I (134281) ECG_DEBUG: Max ECG value before offset: 0.119V +I (134341) ECG_DEBUG: Max ECG value before offset: 0.119V +I (134401) ECG_DEBUG: Max ECG value before offset: 0.002V +I (134461) ECG_DEBUG: Max ECG value before offset: 0.015V +I (134521) ECG_DEBUG: Max ECG value before offset: 0.044V +I (134581) ECG_DEBUG: Max ECG value before offset: 0.053V +I (134641) ECG_DEBUG: Max ECG value before offset: 0.048V +I (134701) ECG_DEBUG: Max ECG value before offset: 0.019V +I (134761) ECG_DEBUG: Max ECG value before offset: 0.003V +I (134831) ECG_DEBUG: Max ECG value before offset: 0.000V +I (134891) ECG_DEBUG: Max ECG value before offset: 0.000V +I (134951) ECG_DEBUG: Max ECG value before offset: 0.001V +I (135011) ECG_DEBUG: Max ECG value before offset: 0.016V +I (135071) MAIN: Generated 20000 samples at 20kHz (ECG) +I (135071) ECG_DEBUG: Max ECG value before offset: 0.026V +I (135131) ECG_DEBUG: Max ECG value before offset: 0.021V +I (135191) ECG_DEBUG: Max ECG value before offset: 0.002V +I (135251) ECG_DEBUG: Max ECG value before offset: 0.119V +I (135311) ECG_DEBUG: Max ECG value before offset: 0.119V +I (135371) ECG_DEBUG: Max ECG value before offset: 0.002V +I (135431) ECG_DEBUG: Max ECG value before offset: 0.015V +I (135501) ECG_DEBUG: Max ECG value before offset: 0.044V +I (135561) ECG_DEBUG: Max ECG value before offset: 0.053V +I (135621) ECG_DEBUG: Max ECG value before offset: 0.048V +I (135681) ECG_DEBUG: Max ECG value before offset: 0.019V +I (135741) ECG_DEBUG: Max ECG value before offset: 0.003V +I (135801) ECG_DEBUG: Max ECG value before offset: 0.000V +I (135871) ECG_DEBUG: Max ECG value before offset: 0.000V +I (135931) ECG_DEBUG: Max ECG value before offset: 0.001V +I (135991) ECG_DEBUG: Max ECG value before offset: 0.016V +I (136051) ECG_DEBUG: Max ECG value before offset: 0.026V +I (136111) ECG_DEBUG: Max ECG value before offset: 0.021V +I (136171) ECG_DEBUG: Max ECG value before offset: 0.002V +I (136231) ECG_DEBUG: Max ECG value before offset: 0.119V +I (136291) MAIN: Generated 20000 samples at 20kHz (ECG) +I (136291) ECG_DEBUG: Max ECG value before offset: 0.119V +I (136351) ECG_DEBUG: Max ECG value before offset: 0.002V +I (136411) ECG_DEBUG: Max ECG value before offset: 0.015V +I (136471) ECG_DEBUG: Max ECG value before offset: 0.044V +I (136531) ECG_DEBUG: Max ECG value before offset: 0.053V +I (136601) ECG_DEBUG: Max ECG value before offset: 0.048V +I (136661) ECG_DEBUG: Max ECG value before offset: 0.019V +I (136721) ECG_DEBUG: Max ECG value before offset: 0.003V +I (136781) ECG_DEBUG: Max ECG value before offset: 0.000V +I (136841) ECG_DEBUG: Max ECG value before offset: 0.000V +I (136901) ECG_DEBUG: Max ECG value before offset: 0.001V +I (136971) ECG_DEBUG: Max ECG value before offset: 0.016V +I (137031) ECG_DEBUG: Max ECG value before offset: 0.026V +I (137091) ECG_DEBUG: Max ECG value before offset: 0.021V +I (137151) ECG_DEBUG: Max ECG value before offset: 0.002V +I (137211) ECG_DEBUG: Max ECG value before offset: 0.119V +I (137271) ECG_DEBUG: Max ECG value before offset: 0.119V +I (137331) ECG_DEBUG: Max ECG value before offset: 0.002V +I (137391) ECG_DEBUG: Max ECG value before offset: 0.015V +I (137451) ECG_DEBUG: Max ECG value before offset: 0.044V +I (137511) MAIN: Generated 20000 samples at 20kHz (ECG) +I (137511) ECG_DEBUG: Max ECG value before offset: 0.053V +I (137571) ECG_DEBUG: Max ECG value before offset: 0.048V +I (137631) ECG_DEBUG: Max ECG value before offset: 0.019V +I (137701) ECG_DEBUG: Max ECG value before offset: 0.003V +I (137761) ECG_DEBUG: Max ECG value before offset: 0.000V +I (137821) ECG_DEBUG: Max ECG value before offset: 0.000V +I (137881) ECG_DEBUG: Max ECG value before offset: 0.001V +I (137941) ECG_DEBUG: Max ECG value before offset: 0.016V +I (138001) ECG_DEBUG: Max ECG value before offset: 0.026V +I (138061) ECG_DEBUG: Max ECG value before offset: 0.021V +I (138131) ECG_DEBUG: Max ECG value before offset: 0.002V +I (138191) ECG_DEBUG: Max ECG value before offset: 0.119V +I (138251) ECG_DEBUG: Max ECG value before offset: 0.119V +I (138311) ECG_DEBUG: Max ECG value before offset: 0.002V +I (138371) ECG_DEBUG: Max ECG value before offset: 0.015V +I (138431) ECG_DEBUG: Max ECG value before offset: 0.044V +I (138491) ECG_DEBUG: Max ECG value before offset: 0.053V +I (138551) ECG_DEBUG: Max ECG value before offset: 0.048V +I (138611) ECG_DEBUG: Max ECG value before offset: 0.019V +I (138671) ECG_DEBUG: Max ECG value before offset: 0.003V +I (138741) MAIN: Generated 20000 samples at 20kHz (ECG) +I (138741) ECG_DEBUG: Max ECG value before offset: 0.000V +I (138801) ECG_DEBUG: Max ECG value before offset: 0.000V +I (138861) ECG_DEBUG: Max ECG value before offset: 0.001V +I (138921) ECG_DEBUG: Max ECG value before offset: 0.016V +I (138981) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (138981) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (138991) MAIN: Switched to sine wave mode +I (139811) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (140861) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (140991) MAIN: DRAM Total: 367363 bytes, Used: 57096 bytes, Free: 310267 bytes, DRAM_Largest_block: 249856 bytes +I (140991) MAIN: DRAM Used: 15.54% +I (140991) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (141001) MAIN: PSRAM Used: 0.03% +I (141011) SINE_GEN: Sine generator stopped +I (141011) MAIN: Switched to ECG mode +I (141021) ECG_DEBUG: Max ECG value before offset: 0.026V +I (141081) ECG_DEBUG: Max ECG value before offset: 0.009V +I (141141) ECG_DEBUG: Max ECG value before offset: 0.026V +I (141201) ECG_DEBUG: Max ECG value before offset: 0.026V +I (141261) ECG_DEBUG: Max ECG value before offset: 0.005V +I (141321) ECG_DEBUG: Max ECG value before offset: 0.029V +I (141381) ECG_DEBUG: Max ECG value before offset: 0.119V +I (141441) ECG_DEBUG: Max ECG value before offset: 0.015V +I (141501) ECG_DEBUG: Max ECG value before offset: 0.009V +I (141561) ECG_DEBUG: Max ECG value before offset: 0.036V +I (141621) ECG_DEBUG: Max ECG value before offset: 0.053V +I (141691) ECG_DEBUG: Max ECG value before offset: 0.052V +I (141751) ECG_DEBUG: Max ECG value before offset: 0.028V +I (141811) ECG_DEBUG: Max ECG value before offset: 0.006V +I (141871) ECG_DEBUG: Max ECG value before offset: 0.000V +I (141931) ECG_DEBUG: Max ECG value before offset: 0.000V +I (141991) ECG_DEBUG: Max ECG value before offset: 0.000V +I (142051) MAIN: Generated 20000 samples at 20kHz (ECG) +I (142051) ECG_DEBUG: Max ECG value before offset: 0.009V +I (142111) ECG_DEBUG: Max ECG value before offset: 0.026V +I (142181) ECG_DEBUG: Max ECG value before offset: 0.026V +I (142241) ECG_DEBUG: Max ECG value before offset: 0.005V +I (142301) ECG_DEBUG: Max ECG value before offset: 0.029V +I (142361) ECG_DEBUG: Max ECG value before offset: 0.119V +I (142421) ECG_DEBUG: Max ECG value before offset: 0.015V +I (142481) ECG_DEBUG: Max ECG value before offset: 0.009V +I (142541) ECG_DEBUG: Max ECG value before offset: 0.036V +I (142601) ECG_DEBUG: Max ECG value before offset: 0.053V +I (142661) ECG_DEBUG: Max ECG value before offset: 0.052V +I (142721) ECG_DEBUG: Max ECG value before offset: 0.028V +I (142781) ECG_DEBUG: Max ECG value before offset: 0.006V +I (142851) ECG_DEBUG: Max ECG value before offset: 0.000V +I (142911) ECG_DEBUG: Max ECG value before offset: 0.000V +I (142971) ECG_DEBUG: Max ECG value before offset: 0.000V +I (143021) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (143021) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (143031) MAIN: Switched to sine wave mode +I (143231) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (144271) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (145031) SINE_GEN: Sine generator stopped +I (145031) MAIN: Switched to ECG mode +I (145041) ECG_DEBUG: Max ECG value before offset: 0.005V +I (145101) ECG_DEBUG: Max ECG value before offset: 0.012V +I (145161) ECG_DEBUG: Max ECG value before offset: 0.026V +I (145221) ECG_DEBUG: Max ECG value before offset: 0.024V +I (145281) ECG_DEBUG: Max ECG value before offset: 0.003V +I (145341) ECG_DEBUG: Max ECG value before offset: 0.075V +I (145361) MAIN: Generated 20000 samples at 20kHz (ECG) +I (145401) ECG_DEBUG: Max ECG value before offset: 0.119V +I (145461) ECG_DEBUG: Max ECG value before offset: 0.005V +I (145521) ECG_DEBUG: Max ECG value before offset: 0.011V +I (145581) ECG_DEBUG: Max ECG value before offset: 0.039V +I (145641) ECG_DEBUG: Max ECG value before offset: 0.053V +I (145711) ECG_DEBUG: Max ECG value before offset: 0.051V +I (145771) ECG_DEBUG: Max ECG value before offset: 0.024V +I (145831) ECG_DEBUG: Max ECG value before offset: 0.004V +I (145891) ECG_DEBUG: Max ECG value before offset: 0.000V +I (145951) ECG_DEBUG: Max ECG value before offset: 0.000V +I (146011) ECG_DEBUG: Max ECG value before offset: 0.000V +I (146071) ECG_DEBUG: Max ECG value before offset: 0.012V +I (146141) ECG_DEBUG: Max ECG value before offset: 0.026V +I (146201) ECG_DEBUG: Max ECG value before offset: 0.024V +I (146261) ECG_DEBUG: Max ECG value before offset: 0.003V +I (146321) ECG_DEBUG: Max ECG value before offset: 0.075V +I (146381) ECG_DEBUG: Max ECG value before offset: 0.119V +I (146441) ECG_DEBUG: Max ECG value before offset: 0.005V +I (146501) ECG_DEBUG: Max ECG value before offset: 0.011V +I (146561) ECG_DEBUG: Max ECG value before offset: 0.039V +I (146581) MAIN: Generated 20000 samples at 20kHz (ECG) +I (146621) ECG_DEBUG: Max ECG value before offset: 0.053V +I (146681) ECG_DEBUG: Max ECG value before offset: 0.051V +I (146741) ECG_DEBUG: Max ECG value before offset: 0.024V +I (146801) ECG_DEBUG: Max ECG value before offset: 0.004V +I (146871) ECG_DEBUG: Max ECG value before offset: 0.000V +I (146931) ECG_DEBUG: Max ECG value before offset: 0.000V +I (146991) ECG_DEBUG: Max ECG value before offset: 0.000V +I (147031) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (147031) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (147041) MAIN: Switched to sine wave mode +I (147691) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (148731) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (149041) SINE_GEN: Sine generator stopped +I (149041) MAIN: Switched to ECG mode +I (149061) ECG_DEBUG: Max ECG value before offset: 0.004V +I (149121) ECG_DEBUG: Max ECG value before offset: 0.016V +I (149181) ECG_DEBUG: Max ECG value before offset: 0.026V +I (149241) ECG_DEBUG: Max ECG value before offset: 0.021V +I (149301) ECG_DEBUG: Max ECG value before offset: 0.002V +I (149361) ECG_DEBUG: Max ECG value before offset: 0.119V +I (149421) ECG_DEBUG: Max ECG value before offset: 0.119V +I (149481) ECG_DEBUG: Max ECG value before offset: 0.002V +I (149541) ECG_DEBUG: Max ECG value before offset: 0.015V +I (149601) ECG_DEBUG: Max ECG value before offset: 0.044V +I (149671) ECG_DEBUG: Max ECG value before offset: 0.053V +I (149731) ECG_DEBUG: Max ECG value before offset: 0.048V +I (149791) ECG_DEBUG: Max ECG value before offset: 0.019V +I (149851) ECG_DEBUG: Max ECG value before offset: 0.003V +I (149891) MAIN: Generated 20000 samples at 20kHz (ECG) +I (149911) ECG_DEBUG: Max ECG value before offset: 0.000V +I (149971) ECG_DEBUG: Max ECG value before offset: 0.000V +I (150031) ECG_DEBUG: Max ECG value before offset: 0.001V +I (150091) ECG_DEBUG: Max ECG value before offset: 0.016V +I (150161) ECG_DEBUG: Max ECG value before offset: 0.026V +I (150221) ECG_DEBUG: Max ECG value before offset: 0.021V +I (150281) ECG_DEBUG: Max ECG value before offset: 0.002V +I (150341) ECG_DEBUG: Max ECG value before offset: 0.119V +I (150401) ECG_DEBUG: Max ECG value before offset: 0.119V +I (150461) ECG_DEBUG: Max ECG value before offset: 0.002V +I (150521) ECG_DEBUG: Max ECG value before offset: 0.015V +I (150581) ECG_DEBUG: Max ECG value before offset: 0.044V +I (150641) ECG_DEBUG: Max ECG value before offset: 0.053V +I (150701) ECG_DEBUG: Max ECG value before offset: 0.048V +I (150761) ECG_DEBUG: Max ECG value before offset: 0.019V +I (150821) ECG_DEBUG: Max ECG value before offset: 0.003V +I (150891) ECG_DEBUG: Max ECG value before offset: 0.000V +I (150951) ECG_DEBUG: Max ECG value before offset: 0.000V +I (151011) ECG_DEBUG: Max ECG value before offset: 0.001V +I (151041) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (151041) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (151051) MAIN: Switched to sine wave mode +I (151101) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (152141) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (153051) SINE_GEN: Sine generator stopped +I (153051) MAIN: Switched to ECG mode +I (153081) ECG_DEBUG: Max ECG value before offset: 0.004V +I (153141) ECG_DEBUG: Max ECG value before offset: 0.021V +I (153201) ECG_DEBUG: Max ECG value before offset: 0.026V +I (153211) MAIN: Generated 20000 samples at 20kHz (ECG) +I (153261) ECG_DEBUG: Max ECG value before offset: 0.016V +I (153321) ECG_DEBUG: Max ECG value before offset: 0.004V +I (153381) ECG_DEBUG: Max ECG value before offset: 0.119V +I (153441) ECG_DEBUG: Max ECG value before offset: 0.057V +I (153501) ECG_DEBUG: Max ECG value before offset: 0.003V +I (153561) ECG_DEBUG: Max ECG value before offset: 0.019V +I (153621) ECG_DEBUG: Max ECG value before offset: 0.048V +I (153691) ECG_DEBUG: Max ECG value before offset: 0.053V +I (153751) ECG_DEBUG: Max ECG value before offset: 0.044V +I (153811) ECG_DEBUG: Max ECG value before offset: 0.015V +I (153871) ECG_DEBUG: Max ECG value before offset: 0.002V +I (153931) ECG_DEBUG: Max ECG value before offset: 0.000V +I (153991) ECG_DEBUG: Max ECG value before offset: 0.000V +I (154051) ECG_DEBUG: Max ECG value before offset: 0.002V +I (154121) ECG_DEBUG: Max ECG value before offset: 0.021V +I (154181) ECG_DEBUG: Max ECG value before offset: 0.026V +I (154241) ECG_DEBUG: Max ECG value before offset: 0.016V +I (154301) ECG_DEBUG: Max ECG value before offset: 0.004V +I (154361) ECG_DEBUG: Max ECG value before offset: 0.119V +I (154421) ECG_DEBUG: Max ECG value before offset: 0.057V +I (154421) MAIN: Generated 20000 samples at 20kHz (ECG) +I (154481) ECG_DEBUG: Max ECG value before offset: 0.003V +I (154541) ECG_DEBUG: Max ECG value before offset: 0.019V +I (154601) ECG_DEBUG: Max ECG value before offset: 0.048V +I (154661) ECG_DEBUG: Max ECG value before offset: 0.053V +I (154721) ECG_DEBUG: Max ECG value before offset: 0.044V +I (154781) ECG_DEBUG: Max ECG value before offset: 0.015V +I (154851) ECG_DEBUG: Max ECG value before offset: 0.002V +I (154911) ECG_DEBUG: Max ECG value before offset: 0.000V +I (154971) ECG_DEBUG: Max ECG value before offset: 0.000V +I (155031) ECG_DEBUG: Max ECG value before offset: 0.002V +I (155091) ECG_DEBUG: Max ECG value before offset: 0.021V +I (155151) ECG_DEBUG: Max ECG value before offset: 0.026V +I (155211) ECG_DEBUG: Max ECG value before offset: 0.016V +I (155271) ECG_DEBUG: Max ECG value before offset: 0.004V +I (155331) ECG_DEBUG: Max ECG value before offset: 0.119V +I (155391) ECG_DEBUG: Max ECG value before offset: 0.057V +I (155451) ECG_DEBUG: Max ECG value before offset: 0.003V +I (155511) ECG_DEBUG: Max ECG value before offset: 0.019V +I (155581) ECG_DEBUG: Max ECG value before offset: 0.048V +I (155641) ECG_DEBUG: Max ECG value before offset: 0.053V +I (155641) MAIN: Generated 20000 samples at 20kHz (ECG) +I (155701) ECG_DEBUG: Max ECG value before offset: 0.044V +I (155761) ECG_DEBUG: Max ECG value before offset: 0.015V +I (155821) ECG_DEBUG: Max ECG value before offset: 0.002V +I (155881) ECG_DEBUG: Max ECG value before offset: 0.000V +I (155951) ECG_DEBUG: Max ECG value before offset: 0.000V +I (156011) ECG_DEBUG: Max ECG value before offset: 0.002V +I (156071) ECG_DEBUG: Max ECG value before offset: 0.021V +I (156131) ECG_DEBUG: Max ECG value before offset: 0.026V +I (156191) ECG_DEBUG: Max ECG value before offset: 0.016V +I (156251) ECG_DEBUG: Max ECG value before offset: 0.004V +I (156311) ECG_DEBUG: Max ECG value before offset: 0.119V +I (156371) ECG_DEBUG: Max ECG value before offset: 0.057V +I (156431) ECG_DEBUG: Max ECG value before offset: 0.003V +I (156491) ECG_DEBUG: Max ECG value before offset: 0.019V +I (156551) ECG_DEBUG: Max ECG value before offset: 0.048V +I (156611) ECG_DEBUG: Max ECG value before offset: 0.053V +I (156681) ECG_DEBUG: Max ECG value before offset: 0.044V +I (156741) ECG_DEBUG: Max ECG value before offset: 0.015V +I (156801) ECG_DEBUG: Max ECG value before offset: 0.002V +I (156861) ECG_DEBUG: Max ECG value before offset: 0.000V +I (156861) MAIN: Generated 20000 samples at 20kHz (ECG) +I (156921) ECG_DEBUG: Max ECG value before offset: 0.000V +I (156981) ECG_DEBUG: Max ECG value before offset: 0.002V +I (157051) SINE_GEN: Generated sine lookup table: 200 points, 100.0 Hz +I (157051) SINE_GEN: Sine generator started: 100.0 Hz, 5.0 mV +I (157061) MAIN: Switched to sine wave mode +I (157931) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (158981) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (160021) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (161061) MAIN: DRAM Total: 367363 bytes, Used: 57096 bytes, Free: 310267 bytes, DRAM_Largest_block: 249856 bytes +I (161061) MAIN: DRAM Used: 15.54% +I (161061) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (161071) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (161081) MAIN: PSRAM Used: 0.03% +I (162111) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (163151) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (164191) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (165231) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (166281) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (167321) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (168361) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (169401) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (170441) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (171481) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (172531) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (173571) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (174611) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (175651) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (176691) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (177731) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (178781) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (179821) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (180861) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (181081) MAIN: DRAM Total: 367363 bytes, Used: 57096 bytes, Free: 310267 bytes, DRAM_Largest_block: 249856 bytes +I (181081) MAIN: DRAM Used: 15.54% +I (181081) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (181091) MAIN: PSRAM Used: 0.03% +I (181901) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (182941) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (183981) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (185031) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (186071) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (187111) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (188151) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (189191) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (190231) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (191281) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (192321) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (193361) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (194401) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (195441) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (196481) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (197531) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (198571) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (199611) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (200651) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (201101) MAIN: DRAM Total: 367363 bytes, Used: 57096 bytes, Free: 310267 bytes, DRAM_Largest_block: 249856 bytes +I (201101) MAIN: DRAM Used: 15.54% +I (201101) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (201111) MAIN: PSRAM Used: 0.03% +I (201691) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (202731) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (203781) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (204821) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (205861) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (206901) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (207941) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (208981) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (210031) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (211071) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (212111) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (213151) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (214191) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (215241) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (216281) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (217321) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (218361) MAIN: Generated 20000 samples at 20kHz (Sine Wave) +I (219121) SINE_GEN: Sine generator stopped +I (219121) MAIN: Switched to ECG mode +I (219121) ECG_DEBUG: Max ECG value before offset: 0.021V +I (219181) ECG_DEBUG: Max ECG value before offset: 0.007V +I (219241) ECG_DEBUG: Max ECG value before offset: 0.026V +I (219301) ECG_DEBUG: Max ECG value before offset: 0.026V +I (219361) ECG_DEBUG: Max ECG value before offset: 0.006V +I (219421) ECG_DEBUG: Max ECG value before offset: 0.029V +I (219451) MAIN: Generated 20000 samples at 20kHz (ECG) +I (219481) ECG_DEBUG: Max ECG value before offset: 0.119V +I (219541) ECG_DEBUG: Max ECG value before offset: 0.030V +I (219601) ECG_DEBUG: Max ECG value before offset: 0.007V +I (219661) ECG_DEBUG: Max ECG value before offset: 0.032V +I (219721) ECG_DEBUG: Max ECG value before offset: 0.053V +I (219781) ECG_DEBUG: Max ECG value before offset: 0.053V +I (219851) ECG_DEBUG: Max ECG value before offset: 0.032V +I (219911) ECG_DEBUG: Max ECG value before offset: 0.007V +I (219971) ECG_DEBUG: Max ECG value before offset: 0.001V +I (220031) ECG_DEBUG: Max ECG value before offset: 0.000V +I (220091) ECG_DEBUG: Max ECG value before offset: 0.000V +I (220151) ECG_DEBUG: Max ECG value before offset: 0.007V +I (220211) ECG_DEBUG: Max ECG value before offset: 0.026V +I (220271) ECG_DEBUG: Max ECG value before offset: 0.026V +I (220331) ECG_DEBUG: Max ECG value before offset: 0.006V +I (220391) ECG_DEBUG: Max ECG value before offset: 0.029V +I (220451) ECG_DEBUG: Max ECG value before offset: 0.119V +I (220511) ECG_DEBUG: Max ECG value before offset: 0.030V +I (220581) ECG_DEBUG: Max ECG value before offset: 0.007V +I (220641) ECG_DEBUG: Max ECG value before offset: 0.032V +I (220671) MAIN: Generated 20000 samples at 20kHz (ECG) +I (220701) ECG_DEBUG: Max ECG value before offset: 0.053V +I (220761) ECG_DEBUG: Max ECG value before offset: 0.053V +I (220821) ECG_DEBUG: Max ECG value before offset: 0.032V +I (220881) ECG_DEBUG: Max ECG value before offset: 0.007V +I (220941) ECG_DEBUG: Max ECG value before offset: 0.001V +I (221011) ECG_DEBUG: Max ECG value before offset: 0.000V +I (221071) ECG_DEBUG: Max ECG value before offset: 0.000V +I (221121) MAIN: DRAM Total: 367363 bytes, Used: 57096 bytes, Free: 310267 bytes, DRAM_Largest_block: 249856 bytes +I (221121) MAIN: DRAM Used: 15.54% +I (221121) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (221131) ECG_DEBUG: Max ECG value before offset: 0.007V +I (221141) MAIN: PSRAM Used: 0.03% +I (221201) ECG_DEBUG: Max ECG value before offset: 0.026V +I (221261) ECG_DEBUG: Max ECG value before offset: 0.026V +I (221321) ECG_DEBUG: Max ECG value before offset: 0.006V +I (221381) ECG_DEBUG: Max ECG value before offset: 0.029V +I (221441) ECG_DEBUG: Max ECG value before offset: 0.119V +I (221501) ECG_DEBUG: Max ECG value before offset: 0.030V +I (221561) ECG_DEBUG: Max ECG value before offset: 0.007V +I (221621) ECG_DEBUG: Max ECG value before offset: 0.032V +I (221681) ECG_DEBUG: Max ECG value before offset: 0.053V +I (221741) ECG_DEBUG: Max ECG value before offset: 0.053V +I (221811) ECG_DEBUG: Max ECG value before offset: 0.032V +I (221871) ECG_DEBUG: Max ECG value before offset: 0.007V +I (221901) MAIN: Generated 20000 samples at 20kHz (ECG) +I (221931) ECG_DEBUG: Max ECG value before offset: 0.001V +I (221991) ECG_DEBUG: Max ECG value before offset: 0.000V +I (222051) ECG_DEBUG: Max ECG value before offset: 0.000V +I (222111) ECG_DEBUG: Max ECG value before offset: 0.007V +I (222181) ECG_DEBUG: Max ECG value before offset: 0.026V +I (222241) ECG_DEBUG: Max ECG value before offset: 0.026V +I (222301) ECG_DEBUG: Max ECG value before offset: 0.006V +I (222361) ECG_DEBUG: Max ECG value before offset: 0.029V +I (222421) ECG_DEBUG: Max ECG value before offset: 0.119V +I (222481) ECG_DEBUG: Max ECG value before offset: 0.030V +I (222541) ECG_DEBUG: Max ECG value before offset: 0.007V +I (222601) ECG_DEBUG: Max ECG value before offset: 0.032V +I (222661) ECG_DEBUG: Max ECG value before offset: 0.053V +I (222721) ECG_DEBUG: Max ECG value before offset: 0.053V +I (222781) ECG_DEBUG: Max ECG value before offset: 0.032V +I (222851) ECG_DEBUG: Max ECG value before offset: 0.007V +I (222911) ECG_DEBUG: Max ECG value before offset: 0.001V +I (222971) ECG_DEBUG: Max ECG value before offset: 0.000V +I (223031) ECG_DEBUG: Max ECG value before offset: 0.000V +I (223091) ECG_DEBUG: Max ECG value before offset: 0.007V +I (223121) MAIN: Generated 20000 samples at 20kHz (ECG) +I (223151) ECG_DEBUG: Max ECG value before offset: 0.026V +I (223211) ECG_DEBUG: Max ECG value before offset: 0.026V +I (223271) ECG_DEBUG: Max ECG value before offset: 0.006V +I (223331) ECG_DEBUG: Max ECG value before offset: 0.029V +I (223391) ECG_DEBUG: Max ECG value before offset: 0.119V +I (223451) ECG_DEBUG: Max ECG value before offset: 0.030V +I (223521) ECG_DEBUG: Max ECG value before offset: 0.007V +I (223581) ECG_DEBUG: Max ECG value before offset: 0.032V +I (223641) ECG_DEBUG: Max ECG value before offset: 0.053V +I (223701) ECG_DEBUG: Max ECG value before offset: 0.053V +I (223761) ECG_DEBUG: Max ECG value before offset: 0.032V +I (223821) ECG_DEBUG: Max ECG value before offset: 0.007V +I (223881) ECG_DEBUG: Max ECG value before offset: 0.001V +I (223951) ECG_DEBUG: Max ECG value before offset: 0.000V +I (224011) ECG_DEBUG: Max ECG value before offset: 0.000V +I (224071) ECG_DEBUG: Max ECG value before offset: 0.007V +I (224131) ECG_DEBUG: Max ECG value before offset: 0.026V +I (224191) ECG_DEBUG: Max ECG value before offset: 0.026V +I (224251) ECG_DEBUG: Max ECG value before offset: 0.006V +I (224311) ECG_DEBUG: Max ECG value before offset: 0.029V +I (224341) MAIN: Generated 20000 samples at 20kHz (ECG) +I (224371) ECG_DEBUG: Max ECG value before offset: 0.119V +I (224431) ECG_DEBUG: Max ECG value before offset: 0.030V +I (224491) ECG_DEBUG: Max ECG value before offset: 0.007V +I (224551) ECG_DEBUG: Max ECG value before offset: 0.032V +I (224621) ECG_DEBUG: Max ECG value before offset: 0.053V +I (224681) ECG_DEBUG: Max ECG value before offset: 0.053V +I (224741) ECG_DEBUG: Max ECG value before offset: 0.032V +I (224801) ECG_DEBUG: Max ECG value before offset: 0.007V +I (224861) ECG_DEBUG: Max ECG value before offset: 0.001V +I (224921) ECG_DEBUG: Max ECG value before offset: 0.000V +I (224991) ECG_DEBUG: Max ECG value before offset: 0.000V +I (225051) ECG_DEBUG: Max ECG value before offset: 0.007V +I (225111) ECG_DEBUG: Max ECG value before offset: 0.026V +I (225171) ECG_DEBUG: Max ECG value before offset: 0.026V +I (225231) ECG_DEBUG: Max ECG value before offset: 0.006V +I (225291) ECG_DEBUG: Max ECG value before offset: 0.029V +I (225351) ECG_DEBUG: Max ECG value before offset: 0.119V +I (225411) ECG_DEBUG: Max ECG value before offset: 0.030V +I (225471) ECG_DEBUG: Max ECG value before offset: 0.007V +I (225531) ECG_DEBUG: Max ECG value before offset: 0.032V +I (225561) MAIN: Generated 20000 samples at 20kHz (ECG) +I (225591) ECG_DEBUG: Max ECG value before offset: 0.053V +I (225651) ECG_DEBUG: Max ECG value before offset: 0.053V +I (225721) ECG_DEBUG: Max ECG value before offset: 0.032V +I (225781) ECG_DEBUG: Max ECG value before offset: 0.007V +I (225841) ECG_DEBUG: Max ECG value before offset: 0.001V +I (225901) ECG_DEBUG: Max ECG value before offset: 0.000V +I (225961) ECG_DEBUG: Max ECG value before offset: 0.000V +I (226021) ECG_DEBUG: Max ECG value before offset: 0.007V +I (226091) ECG_DEBUG: Max ECG value before offset: 0.026V +I (226151) ECG_DEBUG: Max ECG value before offset: 0.026V +I (226211) ECG_DEBUG: Max ECG value before offset: 0.006V +I (226271) ECG_DEBUG: Max ECG value before offset: 0.029V +I (226331) ECG_DEBUG: Max ECG value before offset: 0.119V +I (226391) ECG_DEBUG: Max ECG value before offset: 0.030V +I (226451) ECG_DEBUG: Max ECG value before offset: 0.007V +I (226511) ECG_DEBUG: Max ECG value before offset: 0.032V +I (226571) ECG_DEBUG: Max ECG value before offset: 0.053V +I (226631) ECG_DEBUG: Max ECG value before offset: 0.053V +I (226691) ECG_DEBUG: Max ECG value before offset: 0.032V +I (226761) ECG_DEBUG: Max ECG value before offset: 0.007V +I (226791) MAIN: Generated 20000 samples at 20kHz (ECG) +I (226821) ECG_DEBUG: Max ECG value before offset: 0.001V +I (226881) ECG_DEBUG: Max ECG value before offset: 0.000V +I (226941) ECG_DEBUG: Max ECG value before offset: 0.000V +I (227001) ECG_DEBUG: Max ECG value before offset: 0.007V +I (227061) ECG_DEBUG: Max ECG value before offset: 0.026V +I (227121) ECG_DEBUG: Max ECG value before offset: 0.026V +I (227181) ECG_DEBUG: Max ECG value before offset: 0.006V +I (227251) ECG_DEBUG: Max ECG value before offset: 0.029V +I (227311) ECG_DEBUG: Max ECG value before offset: 0.119V +I (227371) ECG_DEBUG: Max ECG value before offset: 0.030V +I (227431) ECG_DEBUG: Max ECG value before offset: 0.007V +I (227491) ECG_DEBUG: Max ECG value before offset: 0.032V +I (227551) ECG_DEBUG: Max ECG value before offset: 0.053V +I (227611) ECG_DEBUG: Max ECG value before offset: 0.053V +I (227671) ECG_DEBUG: Max ECG value before offset: 0.032V +I (227731) ECG_DEBUG: Max ECG value before offset: 0.007V +I (227791) ECG_DEBUG: Max ECG value before offset: 0.001V +I (227861) ECG_DEBUG: Max ECG value before offset: 0.000V +I (227921) ECG_DEBUG: Max ECG value before offset: 0.000V +I (227981) ECG_DEBUG: Max ECG value before offset: 0.007V +I (228011) MAIN: Generated 20000 samples at 20kHz (ECG) +I (228041) ECG_DEBUG: Max ECG value before offset: 0.026V +I (228101) ECG_DEBUG: Max ECG value before offset: 0.026V +I (228161) ECG_DEBUG: Max ECG value before offset: 0.006V +I (228221) ECG_DEBUG: Max ECG value before offset: 0.029V +I (228281) ECG_DEBUG: Max ECG value before offset: 0.119V +I (228341) ECG_DEBUG: Max ECG value before offset: 0.030V +I (228401) ECG_DEBUG: Max ECG value before offset: 0.007V +I (228461) ECG_DEBUG: Max ECG value before offset: 0.032V +I (228531) ECG_DEBUG: Max ECG value before offset: 0.053V +I (228591) ECG_DEBUG: Max ECG value before offset: 0.053V +I (228651) ECG_DEBUG: Max ECG value before offset: 0.032V +I (228711) ECG_DEBUG: Max ECG value before offset: 0.007V +I (228771) ECG_DEBUG: Max ECG value before offset: 0.001V +I (228831) ECG_DEBUG: Max ECG value before offset: 0.000V +I (228901) ECG_DEBUG: Max ECG value before offset: 0.000V +I (228961) ECG_DEBUG: Max ECG value before offset: 0.007V +I (229021) ECG_DEBUG: Max ECG value before offset: 0.026V +I (229081) ECG_DEBUG: Max ECG value before offset: 0.026V +I (229141) ECG_DEBUG: Max ECG value before offset: 0.006V +I (229201) ECG_DEBUG: Max ECG value before offset: 0.029V +I (229231) MAIN: Generated 20000 samples at 20kHz (ECG) +I (229261) ECG_DEBUG: Max ECG value before offset: 0.119V +I (229321) ECG_DEBUG: Max ECG value before offset: 0.030V +I (229381) ECG_DEBUG: Max ECG value before offset: 0.007V +I (229441) ECG_DEBUG: Max ECG value before offset: 0.032V +I (229501) ECG_DEBUG: Max ECG value before offset: 0.053V +I (229571) ECG_DEBUG: Max ECG value before offset: 0.053V +I (229631) ECG_DEBUG: Max ECG value before offset: 0.032V +I (229691) ECG_DEBUG: Max ECG value before offset: 0.007V +I (229751) ECG_DEBUG: Max ECG value before offset: 0.001V +I (229811) ECG_DEBUG: Max ECG value before offset: 0.000V +I (229871) ECG_DEBUG: Max ECG value before offset: 0.000V +I (229941) ECG_DEBUG: Max ECG value before offset: 0.007V +I (230001) ECG_DEBUG: Max ECG value before offset: 0.026V +I (230061) ECG_DEBUG: Max ECG value before offset: 0.026V +I (230121) ECG_DEBUG: Max ECG value before offset: 0.006V +I (230181) ECG_DEBUG: Max ECG value before offset: 0.029V +I (230241) ECG_DEBUG: Max ECG value before offset: 0.119V +I (230301) ECG_DEBUG: Max ECG value before offset: 0.030V +I (230361) ECG_DEBUG: Max ECG value before offset: 0.007V +I (230421) ECG_DEBUG: Max ECG value before offset: 0.032V +I (230451) MAIN: Generated 20000 samples at 20kHz (ECG) +I (230481) ECG_DEBUG: Max ECG value before offset: 0.053V +I (230541) ECG_DEBUG: Max ECG value before offset: 0.053V +I (230611) ECG_DEBUG: Max ECG value before offset: 0.032V +I (230671) ECG_DEBUG: Max ECG value before offset: 0.007V +I (230731) ECG_DEBUG: Max ECG value before offset: 0.001V +I (230791) ECG_DEBUG: Max ECG value before offset: 0.000V +I (230851) ECG_DEBUG: Max ECG value before offset: 0.000V +I (230921) ECG_DEBUG: Max ECG value before offset: 0.007V +I (230981) ECG_DEBUG: Max ECG value before offset: 0.026V +I (231041) ECG_DEBUG: Max ECG value before offset: 0.026V +I (231101) ECG_DEBUG: Max ECG value before offset: 0.006V +I (231161) ECG_DEBUG: Max ECG value before offset: 0.029V +I (231221) ECG_DEBUG: Max ECG value before offset: 0.119V +I (231281) ECG_DEBUG: Max ECG value before offset: 0.030V +I (231341) ECG_DEBUG: Max ECG value before offset: 0.007V +I (231401) ECG_DEBUG: Max ECG value before offset: 0.032V +I (231461) ECG_DEBUG: Max ECG value before offset: 0.053V +I (231521) ECG_DEBUG: Max ECG value before offset: 0.053V +I (231581) ECG_DEBUG: Max ECG value before offset: 0.032V +I (231651) ECG_DEBUG: Max ECG value before offset: 0.007V +I (231681) MAIN: Generated 20000 samples at 20kHz (ECG) +I (231711) ECG_DEBUG: Max ECG value before offset: 0.001V +I (231771) ECG_DEBUG: Max ECG value before offset: 0.000V +I (231831) ECG_DEBUG: Max ECG value before offset: 0.000V +I (231891) ECG_DEBUG: Max ECG value before offset: 0.007V +I (231961) ECG_DEBUG: Max ECG value before offset: 0.026V +I (232021) ECG_DEBUG: Max ECG value before offset: 0.026V +I (232081) ECG_DEBUG: Max ECG value before offset: 0.006V +I (232141) ECG_DEBUG: Max ECG value before offset: 0.029V +I (232201) ECG_DEBUG: Max ECG value before offset: 0.119V +I (232261) ECG_DEBUG: Max ECG value before offset: 0.030V +I (232321) ECG_DEBUG: Max ECG value before offset: 0.007V +I (232381) ECG_DEBUG: Max ECG value before offset: 0.032V +I (232441) ECG_DEBUG: Max ECG value before offset: 0.053V +I (232501) ECG_DEBUG: Max ECG value before offset: 0.053V +I (232561) ECG_DEBUG: Max ECG value before offset: 0.032V +I (232631) ECG_DEBUG: Max ECG value before offset: 0.007V +I (232691) ECG_DEBUG: Max ECG value before offset: 0.001V +I (232751) ECG_DEBUG: Max ECG value before offset: 0.000V +I (232811) ECG_DEBUG: Max ECG value before offset: 0.000V +I (232871) ECG_DEBUG: Max ECG value before offset: 0.007V +I (232901) MAIN: Generated 20000 samples at 20kHz (ECG) +I (232931) ECG_DEBUG: Max ECG value before offset: 0.026V +I (232991) ECG_DEBUG: Max ECG value before offset: 0.026V +I (233061) ECG_DEBUG: Max ECG value before offset: 0.006V +I (233121) ECG_DEBUG: Max ECG value before offset: 0.029V +I (233181) ECG_DEBUG: Max ECG value before offset: 0.119V +I (233241) ECG_DEBUG: Max ECG value before offset: 0.030V +I (233301) ECG_DEBUG: Max ECG value before offset: 0.007V +I (233361) ECG_DEBUG: Max ECG value before offset: 0.032V +I (233421) ECG_DEBUG: Max ECG value before offset: 0.053V +I (233481) ECG_DEBUG: Max ECG value before offset: 0.053V +I (233541) ECG_DEBUG: Max ECG value before offset: 0.032V +I (233601) ECG_DEBUG: Max ECG value before offset: 0.007V +I (233671) ECG_DEBUG: Max ECG value before offset: 0.001V +I (233731) ECG_DEBUG: Max ECG value before offset: 0.000V +I (233791) ECG_DEBUG: Max ECG value before offset: 0.000V +I (233851) ECG_DEBUG: Max ECG value before offset: 0.007V +I (233911) ECG_DEBUG: Max ECG value before offset: 0.026V +I (233971) ECG_DEBUG: Max ECG value before offset: 0.026V +I (234031) ECG_DEBUG: Max ECG value before offset: 0.006V +I (234091) ECG_DEBUG: Max ECG value before offset: 0.029V +I (234121) MAIN: Generated 20000 samples at 20kHz (ECG) +I (234151) ECG_DEBUG: Max ECG value before offset: 0.119V +I (234221) ECG_DEBUG: Max ECG value before offset: 0.030V +I (234281) ECG_DEBUG: Max ECG value before offset: 0.007V +I (234341) ECG_DEBUG: Max ECG value before offset: 0.032V +I (234401) ECG_DEBUG: Max ECG value before offset: 0.053V +I (234461) ECG_DEBUG: Max ECG value before offset: 0.053V +I (234521) ECG_DEBUG: Max ECG value before offset: 0.032V +I (234581) ECG_DEBUG: Max ECG value before offset: 0.007V +I (234641) ECG_DEBUG: Max ECG value before offset: 0.001V +I (234711) ECG_DEBUG: Max ECG value before offset: 0.000V +I (234771) ECG_DEBUG: Max ECG value before offset: 0.000V +I (234831) ECG_DEBUG: Max ECG value before offset: 0.007V +I (234891) ECG_DEBUG: Max ECG value before offset: 0.026V +I (234951) ECG_DEBUG: Max ECG value before offset: 0.026V +I (235011) ECG_DEBUG: Max ECG value before offset: 0.006V +I (235071) ECG_DEBUG: Max ECG value before offset: 0.029V +I (235131) ECG_DEBUG: Max ECG value before offset: 0.119V +I (235191) ECG_DEBUG: Max ECG value before offset: 0.030V +I (235251) ECG_DEBUG: Max ECG value before offset: 0.007V +I (235321) ECG_DEBUG: Max ECG value before offset: 0.032V +I (235341) MAIN: Generated 20000 samples at 20kHz (ECG) +I (235381) ECG_DEBUG: Max ECG value before offset: 0.053V +I (235441) ECG_DEBUG: Max ECG value before offset: 0.053V +I (235501) ECG_DEBUG: Max ECG value before offset: 0.032V +I (235561) ECG_DEBUG: Max ECG value before offset: 0.007V +I (235621) ECG_DEBUG: Max ECG value before offset: 0.001V +I (235691) ECG_DEBUG: Max ECG value before offset: 0.000V +I (235751) ECG_DEBUG: Max ECG value before offset: 0.000V +I (235811) ECG_DEBUG: Max ECG value before offset: 0.007V +I (235871) ECG_DEBUG: Max ECG value before offset: 0.026V +I (235931) ECG_DEBUG: Max ECG value before offset: 0.026V +I (235991) ECG_DEBUG: Max ECG value before offset: 0.006V +I (236051) ECG_DEBUG: Max ECG value before offset: 0.029V +I (236111) ECG_DEBUG: Max ECG value before offset: 0.119V +I (236171) ECG_DEBUG: Max ECG value before offset: 0.030V +I (236231) ECG_DEBUG: Max ECG value before offset: 0.007V +I (236291) ECG_DEBUG: Max ECG value before offset: 0.032V +I (236361) ECG_DEBUG: Max ECG value before offset: 0.053V +I (236421) ECG_DEBUG: Max ECG value before offset: 0.053V +I (236481) ECG_DEBUG: Max ECG value before offset: 0.032V +I (236541) ECG_DEBUG: Max ECG value before offset: 0.007V +I (236571) MAIN: Generated 20000 samples at 20kHz (ECG) +I (236601) ECG_DEBUG: Max ECG value before offset: 0.001V +I (236661) ECG_DEBUG: Max ECG value before offset: 0.000V +I (236731) ECG_DEBUG: Max ECG value before offset: 0.000V +I (236791) ECG_DEBUG: Max ECG value before offset: 0.007V +I (236851) ECG_DEBUG: Max ECG value before offset: 0.026V +I (236911) ECG_DEBUG: Max ECG value before offset: 0.026V +I (236971) ECG_DEBUG: Max ECG value before offset: 0.006V +I (237031) ECG_DEBUG: Max ECG value before offset: 0.029V +I (237091) ECG_DEBUG: Max ECG value before offset: 0.119V +I (237151) ECG_DEBUG: Max ECG value before offset: 0.030V +I (237211) ECG_DEBUG: Max ECG value before offset: 0.007V +I (237271) ECG_DEBUG: Max ECG value before offset: 0.032V +I (237331) ECG_DEBUG: Max ECG value before offset: 0.053V +I (237401) ECG_DEBUG: Max ECG value before offset: 0.053V +I (237461) ECG_DEBUG: Max ECG value before offset: 0.032V +I (237521) ECG_DEBUG: Max ECG value before offset: 0.007V +I (237581) ECG_DEBUG: Max ECG value before offset: 0.001V +I (237641) ECG_DEBUG: Max ECG value before offset: 0.000V +I (237701) ECG_DEBUG: Max ECG value before offset: 0.000V +I (237771) ECG_DEBUG: Max ECG value before offset: 0.007V +I (237801) MAIN: Generated 20000 samples at 20kHz (ECG) +I (237831) ECG_DEBUG: Max ECG value before offset: 0.026V +I (237891) ECG_DEBUG: Max ECG value before offset: 0.026V +I (237951) ECG_DEBUG: Max ECG value before offset: 0.006V +I (238011) ECG_DEBUG: Max ECG value before offset: 0.029V +I (238071) ECG_DEBUG: Max ECG value before offset: 0.119V +I (238131) ECG_DEBUG: Max ECG value before offset: 0.030V +I (238191) ECG_DEBUG: Max ECG value before offset: 0.007V +I (238251) ECG_DEBUG: Max ECG value before offset: 0.032V +I (238311) ECG_DEBUG: Max ECG value before offset: 0.053V +I (238371) ECG_DEBUG: Max ECG value before offset: 0.053V +I (238441) ECG_DEBUG: Max ECG value before offset: 0.032V +I (238501) ECG_DEBUG: Max ECG value before offset: 0.007V +I (238561) ECG_DEBUG: Max ECG value before offset: 0.001V +I (238621) ECG_DEBUG: Max ECG value before offset: 0.000V +I (238681) ECG_DEBUG: Max ECG value before offset: 0.000V +I (238741) ECG_DEBUG: Max ECG value before offset: 0.007V +I (238811) ECG_DEBUG: Max ECG value before offset: 0.026V +I (238871) ECG_DEBUG: Max ECG value before offset: 0.026V +I (238931) ECG_DEBUG: Max ECG value before offset: 0.006V +I (238991) ECG_DEBUG: Max ECG value before offset: 0.029V +I (239021) MAIN: Generated 20000 samples at 20kHz (ECG) +I (239051) ECG_DEBUG: Max ECG value before offset: 0.119V +I (239111) ECG_DEBUG: Max ECG value before offset: 0.030V +I (239171) ECG_DEBUG: Max ECG value before offset: 0.007V +I (239231) ECG_DEBUG: Max ECG value before offset: 0.032V +I (239291) ECG_DEBUG: Max ECG value before offset: 0.053V +I (239351) ECG_DEBUG: Max ECG value before offset: 0.053V +I (239421) ECG_DEBUG: Max ECG value before offset: 0.032V +I (239481) ECG_DEBUG: Max ECG value before offset: 0.007V +I (239541) ECG_DEBUG: Max ECG value before offset: 0.001V +I (239601) ECG_DEBUG: Max ECG value before offset: 0.000V +I (239661) ECG_DEBUG: Max ECG value before offset: 0.000V +I (239721) ECG_DEBUG: Max ECG value before offset: 0.007V +I (239791) ECG_DEBUG: Max ECG value before offset: 0.026V +I (239851) ECG_DEBUG: Max ECG value before offset: 0.026V +I (239911) ECG_DEBUG: Max ECG value before offset: 0.006V +I (239971) ECG_DEBUG: Max ECG value before offset: 0.029V +I (240031) ECG_DEBUG: Max ECG value before offset: 0.119V +I (240091) ECG_DEBUG: Max ECG value before offset: 0.030V +I (240151) ECG_DEBUG: Max ECG value before offset: 0.007V +I (240211) ECG_DEBUG: Max ECG value before offset: 0.032V +I (240241) MAIN: Generated 20000 samples at 20kHz (ECG) +I (240271) ECG_DEBUG: Max ECG value before offset: 0.053V +I (240331) ECG_DEBUG: Max ECG value before offset: 0.053V +I (240391) ECG_DEBUG: Max ECG value before offset: 0.032V +I (240461) ECG_DEBUG: Max ECG value before offset: 0.007V +I (240521) ECG_DEBUG: Max ECG value before offset: 0.001V +I (240581) ECG_DEBUG: Max ECG value before offset: 0.000V +I (240641) ECG_DEBUG: Max ECG value before offset: 0.000V +I (240701) ECG_DEBUG: Max ECG value before offset: 0.007V +I (240761) ECG_DEBUG: Max ECG value before offset: 0.026V +I (240831) ECG_DEBUG: Max ECG value before offset: 0.026V +I (240891) ECG_DEBUG: Max ECG value before offset: 0.006V +I (240951) ECG_DEBUG: Max ECG value before offset: 0.029V +I (241011) ECG_DEBUG: Max ECG value before offset: 0.119V +I (241071) ECG_DEBUG: Max ECG value before offset: 0.030V +I (241131) ECG_DEBUG: Max ECG value before offset: 0.007V +I (241141) MAIN: DRAM Total: 367363 bytes, Used: 57128 bytes, Free: 310235 bytes, DRAM_Largest_block: 249856 bytes +I (241141) MAIN: DRAM Used: 15.55% +I (241141) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (241151) MAIN: PSRAM Used: 0.03% +I (241191) ECG_DEBUG: Max ECG value before offset: 0.032V +I (241251) ECG_DEBUG: Max ECG value before offset: 0.053V +I (241311) ECG_DEBUG: Max ECG value before offset: 0.053V +I (241371) ECG_DEBUG: Max ECG value before offset: 0.032V +I (241441) ECG_DEBUG: Max ECG value before offset: 0.007V +I (241471) MAIN: Generated 20000 samples at 20kHz (ECG) +I (241501) ECG_DEBUG: Max ECG value before offset: 0.001V +I (241561) ECG_DEBUG: Max ECG value before offset: 0.000V +I (241621) ECG_DEBUG: Max ECG value before offset: 0.000V +I (241681) ECG_DEBUG: Max ECG value before offset: 0.007V +I (241741) ECG_DEBUG: Max ECG value before offset: 0.026V +I (241811) ECG_DEBUG: Max ECG value before offset: 0.026V +I (241871) ECG_DEBUG: Max ECG value before offset: 0.006V +I (241931) ECG_DEBUG: Max ECG value before offset: 0.029V +I (241991) ECG_DEBUG: Max ECG value before offset: 0.119V +I (242051) ECG_DEBUG: Max ECG value before offset: 0.030V +I (242111) ECG_DEBUG: Max ECG value before offset: 0.007V +I (242171) ECG_DEBUG: Max ECG value before offset: 0.032V +I (242231) ECG_DEBUG: Max ECG value before offset: 0.053V +I (242291) ECG_DEBUG: Max ECG value before offset: 0.053V +I (242351) ECG_DEBUG: Max ECG value before offset: 0.032V +I (242421) ECG_DEBUG: Max ECG value before offset: 0.007V +I (242481) ECG_DEBUG: Max ECG value before offset: 0.001V +I (242541) ECG_DEBUG: Max ECG value before offset: 0.000V +I (242601) ECG_DEBUG: Max ECG value before offset: 0.000V +I (242661) ECG_DEBUG: Max ECG value before offset: 0.007V +I (242691) MAIN: Generated 20000 samples at 20kHz (ECG) +I (242721) ECG_DEBUG: Max ECG value before offset: 0.026V +I (242791) ECG_DEBUG: Max ECG value before offset: 0.026V +I (242851) ECG_DEBUG: Max ECG value before offset: 0.006V +I (242911) ECG_DEBUG: Max ECG value before offset: 0.029V +I (242971) ECG_DEBUG: Max ECG value before offset: 0.119V +I (243031) ECG_DEBUG: Max ECG value before offset: 0.030V +I (243091) ECG_DEBUG: Max ECG value before offset: 0.007V +I (243151) ECG_DEBUG: Max ECG value before offset: 0.032V +I (243211) ECG_DEBUG: Max ECG value before offset: 0.053V +I (243271) ECG_DEBUG: Max ECG value before offset: 0.053V +I (243331) ECG_DEBUG: Max ECG value before offset: 0.032V +I (243391) ECG_DEBUG: Max ECG value before offset: 0.007V +I (243461) ECG_DEBUG: Max ECG value before offset: 0.001V +I (243521) ECG_DEBUG: Max ECG value before offset: 0.000V +I (243581) ECG_DEBUG: Max ECG value before offset: 0.000V +I (243641) ECG_DEBUG: Max ECG value before offset: 0.007V +I (243701) ECG_DEBUG: Max ECG value before offset: 0.026V +I (243761) ECG_DEBUG: Max ECG value before offset: 0.026V +I (243821) ECG_DEBUG: Max ECG value before offset: 0.006V +I (243891) ECG_DEBUG: Max ECG value before offset: 0.029V +I (243911) MAIN: Generated 20000 samples at 20kHz (ECG) +I (243951) ECG_DEBUG: Max ECG value before offset: 0.119V +I (244011) ECG_DEBUG: Max ECG value before offset: 0.030V +I (244071) ECG_DEBUG: Max ECG value before offset: 0.007V +I (244131) ECG_DEBUG: Max ECG value before offset: 0.032V +I (244191) ECG_DEBUG: Max ECG value before offset: 0.053V +I (244251) ECG_DEBUG: Max ECG value before offset: 0.053V +I (244311) ECG_DEBUG: Max ECG value before offset: 0.032V +I (244371) ECG_DEBUG: Max ECG value before offset: 0.007V +I (244441) ECG_DEBUG: Max ECG value before offset: 0.001V +I (244501) ECG_DEBUG: Max ECG value before offset: 0.000V +I (244561) ECG_DEBUG: Max ECG value before offset: 0.000V +I (244621) ECG_DEBUG: Max ECG value before offset: 0.007V +I (244681) ECG_DEBUG: Max ECG value before offset: 0.026V +I (244741) ECG_DEBUG: Max ECG value before offset: 0.026V +I (244801) ECG_DEBUG: Max ECG value before offset: 0.006V +I (244861) ECG_DEBUG: Max ECG value before offset: 0.029V +I (244921) ECG_DEBUG: Max ECG value before offset: 0.119V +I (244991) ECG_DEBUG: Max ECG value before offset: 0.030V +I (245051) ECG_DEBUG: Max ECG value before offset: 0.007V +I (245111) ECG_DEBUG: Max ECG value before offset: 0.032V +I (245141) MAIN: Generated 20000 samples at 20kHz (ECG) +I (245171) ECG_DEBUG: Max ECG value before offset: 0.053V +I (245231) ECG_DEBUG: Max ECG value before offset: 0.053V +I (245291) ECG_DEBUG: Max ECG value before offset: 0.032V +I (245351) ECG_DEBUG: Max ECG value before offset: 0.007V +I (245421) ECG_DEBUG: Max ECG value before offset: 0.001V +I (245481) ECG_DEBUG: Max ECG value before offset: 0.000V +I (245541) ECG_DEBUG: Max ECG value before offset: 0.000V +I (245601) ECG_DEBUG: Max ECG value before offset: 0.007V +I (245661) ECG_DEBUG: Max ECG value before offset: 0.026V +I (245721) ECG_DEBUG: Max ECG value before offset: 0.026V +I (245781) ECG_DEBUG: Max ECG value before offset: 0.006V +I (245841) ECG_DEBUG: Max ECG value before offset: 0.029V +I (245901) ECG_DEBUG: Max ECG value before offset: 0.119V +I (245961) ECG_DEBUG: Max ECG value before offset: 0.030V +I (246031) ECG_DEBUG: Max ECG value before offset: 0.007V +I (246091) ECG_DEBUG: Max ECG value before offset: 0.032V +I (246151) ECG_DEBUG: Max ECG value before offset: 0.053V +I (246211) ECG_DEBUG: Max ECG value before offset: 0.053V +I (246271) ECG_DEBUG: Max ECG value before offset: 0.032V +I (246331) ECG_DEBUG: Max ECG value before offset: 0.007V +I (246361) MAIN: Generated 20000 samples at 20kHz (ECG) +I (246401) ECG_DEBUG: Max ECG value before offset: 0.001V +I (246461) ECG_DEBUG: Max ECG value before offset: 0.000V +I (246521) ECG_DEBUG: Max ECG value before offset: 0.000V +I (246581) ECG_DEBUG: Max ECG value before offset: 0.007V +I (246641) ECG_DEBUG: Max ECG value before offset: 0.026V +I (246701) ECG_DEBUG: Max ECG value before offset: 0.026V +I (246761) ECG_DEBUG: Max ECG value before offset: 0.006V +I (246821) ECG_DEBUG: Max ECG value before offset: 0.029V +I (246881) ECG_DEBUG: Max ECG value before offset: 0.119V +I (246941) ECG_DEBUG: Max ECG value before offset: 0.030V +I (247001) ECG_DEBUG: Max ECG value before offset: 0.007V +I (247071) ECG_DEBUG: Max ECG value before offset: 0.032V +I (247131) ECG_DEBUG: Max ECG value before offset: 0.053V +I (247191) ECG_DEBUG: Max ECG value before offset: 0.053V +I (247251) ECG_DEBUG: Max ECG value before offset: 0.032V +I (247311) ECG_DEBUG: Max ECG value before offset: 0.007V +I (247371) ECG_DEBUG: Max ECG value before offset: 0.001V +I (247441) ECG_DEBUG: Max ECG value before offset: 0.000V +I (247501) ECG_DEBUG: Max ECG value before offset: 0.000V +I (247561) ECG_DEBUG: Max ECG value before offset: 0.007V +I (247591) MAIN: Generated 20000 samples at 20kHz (ECG) +I (247621) ECG_DEBUG: Max ECG value before offset: 0.026V +I (247681) ECG_DEBUG: Max ECG value before offset: 0.026V +I (247741) ECG_DEBUG: Max ECG value before offset: 0.006V +I (247801) ECG_DEBUG: Max ECG value before offset: 0.029V +I (247861) ECG_DEBUG: Max ECG value before offset: 0.119V +I (247921) ECG_DEBUG: Max ECG value before offset: 0.030V +I (247981) ECG_DEBUG: Max ECG value before offset: 0.007V +I (248051) ECG_DEBUG: Max ECG value before offset: 0.032V +I (248111) ECG_DEBUG: Max ECG value before offset: 0.053V +I (248171) ECG_DEBUG: Max ECG value before offset: 0.053V +I (248231) ECG_DEBUG: Max ECG value before offset: 0.032V +I (248291) ECG_DEBUG: Max ECG value before offset: 0.007V +I (248351) ECG_DEBUG: Max ECG value before offset: 0.001V +I (248421) ECG_DEBUG: Max ECG value before offset: 0.000V +I (248481) ECG_DEBUG: Max ECG value before offset: 0.000V +I (248541) ECG_DEBUG: Max ECG value before offset: 0.007V +I (248601) ECG_DEBUG: Max ECG value before offset: 0.026V +I (248661) ECG_DEBUG: Max ECG value before offset: 0.026V +I (248721) ECG_DEBUG: Max ECG value before offset: 0.006V +I (248781) ECG_DEBUG: Max ECG value before offset: 0.029V +I (248811) MAIN: Generated 20000 samples at 20kHz (ECG) +I (248841) ECG_DEBUG: Max ECG value before offset: 0.119V +I (248901) ECG_DEBUG: Max ECG value before offset: 0.030V +I (248961) ECG_DEBUG: Max ECG value before offset: 0.007V +I (249031) ECG_DEBUG: Max ECG value before offset: 0.032V +I (249091) ECG_DEBUG: Max ECG value before offset: 0.053V +I (249151) ECG_DEBUG: Max ECG value before offset: 0.053V +I (249211) ECG_DEBUG: Max ECG value before offset: 0.032V +I (249271) ECG_DEBUG: Max ECG value before offset: 0.007V +I (249331) ECG_DEBUG: Max ECG value before offset: 0.001V +I (249401) ECG_DEBUG: Max ECG value before offset: 0.000V +I (249461) ECG_DEBUG: Max ECG value before offset: 0.000V +I (249521) ECG_DEBUG: Max ECG value before offset: 0.007V +I (249581) ECG_DEBUG: Max ECG value before offset: 0.026V +I (249641) ECG_DEBUG: Max ECG value before offset: 0.026V +I (249701) ECG_DEBUG: Max ECG value before offset: 0.006V +I (249761) ECG_DEBUG: Max ECG value before offset: 0.029V +I (249821) ECG_DEBUG: Max ECG value before offset: 0.119V +I (249881) ECG_DEBUG: Max ECG value before offset: 0.030V +I (249941) ECG_DEBUG: Max ECG value before offset: 0.007V +I (250011) ECG_DEBUG: Max ECG value before offset: 0.032V +I (250031) MAIN: Generated 20000 samples at 20kHz (ECG) +I (250071) ECG_DEBUG: Max ECG value before offset: 0.053V +I (250131) ECG_DEBUG: Max ECG value before offset: 0.053V +I (250191) ECG_DEBUG: Max ECG value before offset: 0.032V +I (250251) ECG_DEBUG: Max ECG value before offset: 0.007V +I (250311) ECG_DEBUG: Max ECG value before offset: 0.001V +I (250381) ECG_DEBUG: Max ECG value before offset: 0.000V +I (250441) ECG_DEBUG: Max ECG value before offset: 0.000V +I (250501) ECG_DEBUG: Max ECG value before offset: 0.007V +I (250561) ECG_DEBUG: Max ECG value before offset: 0.026V +I (250621) ECG_DEBUG: Max ECG value before offset: 0.026V +I (250681) ECG_DEBUG: Max ECG value before offset: 0.006V +I (250741) ECG_DEBUG: Max ECG value before offset: 0.029V +I (250801) ECG_DEBUG: Max ECG value before offset: 0.119V +I (250861) ECG_DEBUG: Max ECG value before offset: 0.030V +I (250921) ECG_DEBUG: Max ECG value before offset: 0.007V +I (250981) ECG_DEBUG: Max ECG value before offset: 0.032V +I (251051) ECG_DEBUG: Max ECG value before offset: 0.053V +I (251111) ECG_DEBUG: Max ECG value before offset: 0.053V +I (251171) ECG_DEBUG: Max ECG value before offset: 0.032V +I (251231) ECG_DEBUG: Max ECG value before offset: 0.007V +I (251261) MAIN: Generated 20000 samples at 20kHz (ECG) +I (251291) ECG_DEBUG: Max ECG value before offset: 0.001V +I (251351) ECG_DEBUG: Max ECG value before offset: 0.000V +I (251421) ECG_DEBUG: Max ECG value before offset: 0.000V +I (251481) ECG_DEBUG: Max ECG value before offset: 0.007V +I (251541) ECG_DEBUG: Max ECG value before offset: 0.026V +I (251601) ECG_DEBUG: Max ECG value before offset: 0.026V +I (251661) ECG_DEBUG: Max ECG value before offset: 0.006V +I (251721) ECG_DEBUG: Max ECG value before offset: 0.029V +I (251781) ECG_DEBUG: Max ECG value before offset: 0.119V +I (251841) ECG_DEBUG: Max ECG value before offset: 0.030V +I (251901) ECG_DEBUG: Max ECG value before offset: 0.007V +I (251961) ECG_DEBUG: Max ECG value before offset: 0.032V +I (252031) ECG_DEBUG: Max ECG value before offset: 0.053V +I (252091) ECG_DEBUG: Max ECG value before offset: 0.053V +I (252151) ECG_DEBUG: Max ECG value before offset: 0.032V +I (252211) ECG_DEBUG: Max ECG value before offset: 0.007V +I (252271) ECG_DEBUG: Max ECG value before offset: 0.001V +I (252331) ECG_DEBUG: Max ECG value before offset: 0.000V +I (252401) ECG_DEBUG: Max ECG value before offset: 0.000V +I (252461) ECG_DEBUG: Max ECG value before offset: 0.007V +I (252491) MAIN: Generated 20000 samples at 20kHz (ECG) +I (252521) ECG_DEBUG: Max ECG value before offset: 0.026V +I (252581) ECG_DEBUG: Max ECG value before offset: 0.026V +I (252641) ECG_DEBUG: Max ECG value before offset: 0.006V +I (252701) ECG_DEBUG: Max ECG value before offset: 0.029V +I (252761) ECG_DEBUG: Max ECG value before offset: 0.119V +I (252821) ECG_DEBUG: Max ECG value before offset: 0.030V +I (252881) ECG_DEBUG: Max ECG value before offset: 0.007V +I (252941) ECG_DEBUG: Max ECG value before offset: 0.032V +I (253001) ECG_DEBUG: Max ECG value before offset: 0.053V +I (253071) ECG_DEBUG: Max ECG value before offset: 0.053V +I (253131) ECG_DEBUG: Max ECG value before offset: 0.032V +I (253191) ECG_DEBUG: Max ECG value before offset: 0.007V +I (253251) ECG_DEBUG: Max ECG value before offset: 0.001V +I (253311) ECG_DEBUG: Max ECG value before offset: 0.000V +I (253381) ECG_DEBUG: Max ECG value before offset: 0.000V +I (253441) ECG_DEBUG: Max ECG value before offset: 0.007V +I (253501) ECG_DEBUG: Max ECG value before offset: 0.026V +I (253561) ECG_DEBUG: Max ECG value before offset: 0.026V +I (253621) ECG_DEBUG: Max ECG value before offset: 0.006V +I (253681) ECG_DEBUG: Max ECG value before offset: 0.029V +I (253711) MAIN: Generated 20000 samples at 20kHz (ECG) +I (253741) ECG_DEBUG: Max ECG value before offset: 0.119V +I (253801) ECG_DEBUG: Max ECG value before offset: 0.030V +I (253861) ECG_DEBUG: Max ECG value before offset: 0.007V +I (253921) ECG_DEBUG: Max ECG value before offset: 0.032V +I (253981) ECG_DEBUG: Max ECG value before offset: 0.053V +I (254051) ECG_DEBUG: Max ECG value before offset: 0.053V +I (254111) ECG_DEBUG: Max ECG value before offset: 0.032V +I (254171) ECG_DEBUG: Max ECG value before offset: 0.007V +I (254231) ECG_DEBUG: Max ECG value before offset: 0.001V +I (254291) ECG_DEBUG: Max ECG value before offset: 0.000V +I (254351) ECG_DEBUG: Max ECG value before offset: 0.000V +I (254421) ECG_DEBUG: Max ECG value before offset: 0.007V +I (254481) ECG_DEBUG: Max ECG value before offset: 0.026V +I (254541) ECG_DEBUG: Max ECG value before offset: 0.026V +I (254601) ECG_DEBUG: Max ECG value before offset: 0.006V +I (254661) ECG_DEBUG: Max ECG value before offset: 0.029V +I (254721) ECG_DEBUG: Max ECG value before offset: 0.119V +I (254781) ECG_DEBUG: Max ECG value before offset: 0.030V +I (254841) ECG_DEBUG: Max ECG value before offset: 0.007V +I (254901) ECG_DEBUG: Max ECG value before offset: 0.032V +I (254931) MAIN: Generated 20000 samples at 20kHz (ECG) +I (254961) ECG_DEBUG: Max ECG value before offset: 0.053V +I (255021) ECG_DEBUG: Max ECG value before offset: 0.053V +I (255091) ECG_DEBUG: Max ECG value before offset: 0.032V +I (255151) ECG_DEBUG: Max ECG value before offset: 0.007V +I (255211) ECG_DEBUG: Max ECG value before offset: 0.001V +I (255271) ECG_DEBUG: Max ECG value before offset: 0.000V +I (255331) ECG_DEBUG: Max ECG value before offset: 0.000V +I (255401) ECG_DEBUG: Max ECG value before offset: 0.007V +I (255461) ECG_DEBUG: Max ECG value before offset: 0.026V +I (255521) ECG_DEBUG: Max ECG value before offset: 0.026V +I (255581) ECG_DEBUG: Max ECG value before offset: 0.006V +I (255641) ECG_DEBUG: Max ECG value before offset: 0.029V +I (255701) ECG_DEBUG: Max ECG value before offset: 0.119V +I (255761) ECG_DEBUG: Max ECG value before offset: 0.030V +I (255821) ECG_DEBUG: Max ECG value before offset: 0.007V +I (255881) ECG_DEBUG: Max ECG value before offset: 0.032V +I (255941) ECG_DEBUG: Max ECG value before offset: 0.053V +I (256001) ECG_DEBUG: Max ECG value before offset: 0.053V +I (256071) ECG_DEBUG: Max ECG value before offset: 0.032V +I (256131) ECG_DEBUG: Max ECG value before offset: 0.007V +I (256161) MAIN: Generated 20000 samples at 20kHz (ECG) +I (256191) ECG_DEBUG: Max ECG value before offset: 0.001V +I (256251) ECG_DEBUG: Max ECG value before offset: 0.000V +I (256311) ECG_DEBUG: Max ECG value before offset: 0.000V +I (256371) ECG_DEBUG: Max ECG value before offset: 0.007V +I (256441) ECG_DEBUG: Max ECG value before offset: 0.026V +I (256501) ECG_DEBUG: Max ECG value before offset: 0.026V +I (256561) ECG_DEBUG: Max ECG value before offset: 0.006V +I (256621) ECG_DEBUG: Max ECG value before offset: 0.029V +I (256681) ECG_DEBUG: Max ECG value before offset: 0.119V +I (256741) ECG_DEBUG: Max ECG value before offset: 0.030V +I (256801) ECG_DEBUG: Max ECG value before offset: 0.007V +I (256861) ECG_DEBUG: Max ECG value before offset: 0.032V +I (256921) ECG_DEBUG: Max ECG value before offset: 0.053V +I (256981) ECG_DEBUG: Max ECG value before offset: 0.053V +I (257051) ECG_DEBUG: Max ECG value before offset: 0.032V +I (257111) ECG_DEBUG: Max ECG value before offset: 0.007V +I (257171) ECG_DEBUG: Max ECG value before offset: 0.001V +I (257231) ECG_DEBUG: Max ECG value before offset: 0.000V +I (257291) ECG_DEBUG: Max ECG value before offset: 0.000V +I (257351) ECG_DEBUG: Max ECG value before offset: 0.007V +I (257381) MAIN: Generated 20000 samples at 20kHz (ECG) +I (257421) ECG_DEBUG: Max ECG value before offset: 0.026V +I (257481) ECG_DEBUG: Max ECG value before offset: 0.026V +I (257541) ECG_DEBUG: Max ECG value before offset: 0.006V +I (257601) ECG_DEBUG: Max ECG value before offset: 0.029V +I (257661) ECG_DEBUG: Max ECG value before offset: 0.119V +I (257721) ECG_DEBUG: Max ECG value before offset: 0.030V +I (257781) ECG_DEBUG: Max ECG value before offset: 0.007V +I (257841) ECG_DEBUG: Max ECG value before offset: 0.032V +I (257901) ECG_DEBUG: Max ECG value before offset: 0.053V +I (257961) ECG_DEBUG: Max ECG value before offset: 0.053V +I (258021) ECG_DEBUG: Max ECG value before offset: 0.032V +I (258091) ECG_DEBUG: Max ECG value before offset: 0.007V +I (258151) ECG_DEBUG: Max ECG value before offset: 0.001V +I (258211) ECG_DEBUG: Max ECG value before offset: 0.000V +I (258271) ECG_DEBUG: Max ECG value before offset: 0.000V +I (258331) ECG_DEBUG: Max ECG value before offset: 0.007V +I (258401) ECG_DEBUG: Max ECG value before offset: 0.026V +I (258461) ECG_DEBUG: Max ECG value before offset: 0.026V +I (258521) ECG_DEBUG: Max ECG value before offset: 0.006V +I (258581) ECG_DEBUG: Max ECG value before offset: 0.029V +I (258611) MAIN: Generated 20000 samples at 20kHz (ECG) +I (258641) ECG_DEBUG: Max ECG value before offset: 0.119V +I (258701) ECG_DEBUG: Max ECG value before offset: 0.030V +I (258761) ECG_DEBUG: Max ECG value before offset: 0.007V +I (258821) ECG_DEBUG: Max ECG value before offset: 0.032V +I (258881) ECG_DEBUG: Max ECG value before offset: 0.053V +I (258941) ECG_DEBUG: Max ECG value before offset: 0.053V +I (259001) ECG_DEBUG: Max ECG value before offset: 0.032V +I (259071) ECG_DEBUG: Max ECG value before offset: 0.007V +I (259131) ECG_DEBUG: Max ECG value before offset: 0.001V +I (259191) ECG_DEBUG: Max ECG value before offset: 0.000V +I (259251) ECG_DEBUG: Max ECG value before offset: 0.000V +I (259311) ECG_DEBUG: Max ECG value before offset: 0.007V +I (259381) ECG_DEBUG: Max ECG value before offset: 0.026V +I (259441) ECG_DEBUG: Max ECG value before offset: 0.026V +I (259501) ECG_DEBUG: Max ECG value before offset: 0.006V +I (259561) ECG_DEBUG: Max ECG value before offset: 0.029V +I (259621) ECG_DEBUG: Max ECG value before offset: 0.119V +I (259681) ECG_DEBUG: Max ECG value before offset: 0.030V +I (259741) ECG_DEBUG: Max ECG value before offset: 0.007V +I (259801) ECG_DEBUG: Max ECG value before offset: 0.032V +I (259831) MAIN: Generated 20000 samples at 20kHz (ECG) +I (259861) ECG_DEBUG: Max ECG value before offset: 0.053V +I (259921) ECG_DEBUG: Max ECG value before offset: 0.053V +I (259981) ECG_DEBUG: Max ECG value before offset: 0.032V +I (260051) ECG_DEBUG: Max ECG value before offset: 0.007V +I (260111) ECG_DEBUG: Max ECG value before offset: 0.001V +I (260171) ECG_DEBUG: Max ECG value before offset: 0.000V +I (260231) ECG_DEBUG: Max ECG value before offset: 0.000V +I (260291) ECG_DEBUG: Max ECG value before offset: 0.007V +I (260351) ECG_DEBUG: Max ECG value before offset: 0.026V +I (260421) ECG_DEBUG: Max ECG value before offset: 0.026V +I (260481) ECG_DEBUG: Max ECG value before offset: 0.006V +I (260541) ECG_DEBUG: Max ECG value before offset: 0.029V +I (260601) ECG_DEBUG: Max ECG value before offset: 0.119V +I (260661) ECG_DEBUG: Max ECG value before offset: 0.030V +I (260721) ECG_DEBUG: Max ECG value before offset: 0.007V +I (260781) ECG_DEBUG: Max ECG value before offset: 0.032V +I (260841) ECG_DEBUG: Max ECG value before offset: 0.053V +I (260901) ECG_DEBUG: Max ECG value before offset: 0.053V +I (260961) ECG_DEBUG: Max ECG value before offset: 0.032V +I (261031) ECG_DEBUG: Max ECG value before offset: 0.007V +I (261061) MAIN: Generated 20000 samples at 20kHz (ECG) +I (261091) ECG_DEBUG: Max ECG value before offset: 0.001V +I (261151) ECG_DEBUG: Max ECG value before offset: 0.000V +I (261161) MAIN: DRAM Total: 367363 bytes, Used: 57128 bytes, Free: 310235 bytes, DRAM_Largest_block: 249856 bytes +I (261161) MAIN: DRAM Used: 15.55% +I (261161) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (261171) MAIN: PSRAM Used: 0.03% +I (261211) ECG_DEBUG: Max ECG value before offset: 0.000V +I (261271) ECG_DEBUG: Max ECG value before offset: 0.007V +I (261341) ECG_DEBUG: Max ECG value before offset: 0.026V +I (261401) ECG_DEBUG: Max ECG value before offset: 0.026V +I (261461) ECG_DEBUG: Max ECG value before offset: 0.006V +I (261521) ECG_DEBUG: Max ECG value before offset: 0.029V +I (261581) ECG_DEBUG: Max ECG value before offset: 0.119V +I (261641) ECG_DEBUG: Max ECG value before offset: 0.030V +I (261701) ECG_DEBUG: Max ECG value before offset: 0.007V +I (261761) ECG_DEBUG: Max ECG value before offset: 0.032V +I (261821) ECG_DEBUG: Max ECG value before offset: 0.053V +I (261881) ECG_DEBUG: Max ECG value before offset: 0.053V +I (261941) ECG_DEBUG: Max ECG value before offset: 0.032V +I (262011) ECG_DEBUG: Max ECG value before offset: 0.007V +I (262071) ECG_DEBUG: Max ECG value before offset: 0.001V +I (262131) ECG_DEBUG: Max ECG value before offset: 0.000V +I (262191) ECG_DEBUG: Max ECG value before offset: 0.000V +I (262251) ECG_DEBUG: Max ECG value before offset: 0.007V +I (262281) MAIN: Generated 20000 samples at 20kHz (ECG) +I (262311) ECG_DEBUG: Max ECG value before offset: 0.026V +I (262381) ECG_DEBUG: Max ECG value before offset: 0.026V +I (262441) ECG_DEBUG: Max ECG value before offset: 0.006V +I (262501) ECG_DEBUG: Max ECG value before offset: 0.029V +I (262561) ECG_DEBUG: Max ECG value before offset: 0.119V +I (262621) ECG_DEBUG: Max ECG value before offset: 0.030V +I (262681) ECG_DEBUG: Max ECG value before offset: 0.007V +I (262741) ECG_DEBUG: Max ECG value before offset: 0.032V +I (262801) ECG_DEBUG: Max ECG value before offset: 0.053V +I (262861) ECG_DEBUG: Max ECG value before offset: 0.053V +I (262921) ECG_DEBUG: Max ECG value before offset: 0.032V +I (262991) ECG_DEBUG: Max ECG value before offset: 0.007V +I (263051) ECG_DEBUG: Max ECG value before offset: 0.001V +I (263111) ECG_DEBUG: Max ECG value before offset: 0.000V +I (263171) ECG_DEBUG: Max ECG value before offset: 0.000V +I (263231) ECG_DEBUG: Max ECG value before offset: 0.007V +I (263291) ECG_DEBUG: Max ECG value before offset: 0.026V +I (263361) ECG_DEBUG: Max ECG value before offset: 0.026V +I (263421) ECG_DEBUG: Max ECG value before offset: 0.006V +I (263481) ECG_DEBUG: Max ECG value before offset: 0.029V +I (263511) MAIN: Generated 20000 samples at 20kHz (ECG) +I (263541) ECG_DEBUG: Max ECG value before offset: 0.119V +I (263601) ECG_DEBUG: Max ECG value before offset: 0.030V +I (263661) ECG_DEBUG: Max ECG value before offset: 0.007V +I (263721) ECG_DEBUG: Max ECG value before offset: 0.032V +I (263781) ECG_DEBUG: Max ECG value before offset: 0.053V +I (263841) ECG_DEBUG: Max ECG value before offset: 0.053V +I (263901) ECG_DEBUG: Max ECG value before offset: 0.032V +I (263971) ECG_DEBUG: Max ECG value before offset: 0.007V +I (264031) ECG_DEBUG: Max ECG value before offset: 0.001V +I (264091) ECG_DEBUG: Max ECG value before offset: 0.000V +I (264151) ECG_DEBUG: Max ECG value before offset: 0.000V +I (264211) ECG_DEBUG: Max ECG value before offset: 0.007V +I (264271) ECG_DEBUG: Max ECG value before offset: 0.026V +I (264341) ECG_DEBUG: Max ECG value before offset: 0.026V +I (264401) ECG_DEBUG: Max ECG value before offset: 0.006V +I (264461) ECG_DEBUG: Max ECG value before offset: 0.029V +I (264521) ECG_DEBUG: Max ECG value before offset: 0.119V +I (264581) ECG_DEBUG: Max ECG value before offset: 0.030V +I (264641) ECG_DEBUG: Max ECG value before offset: 0.007V +I (264701) ECG_DEBUG: Max ECG value before offset: 0.032V +I (264731) MAIN: Generated 20000 samples at 20kHz (ECG) +I (264761) ECG_DEBUG: Max ECG value before offset: 0.053V +I (264821) ECG_DEBUG: Max ECG value before offset: 0.053V +I (264881) ECG_DEBUG: Max ECG value before offset: 0.032V +I (264951) ECG_DEBUG: Max ECG value before offset: 0.007V +I (265011) ECG_DEBUG: Max ECG value before offset: 0.001V +I (265071) ECG_DEBUG: Max ECG value before offset: 0.000V +I (265131) ECG_DEBUG: Max ECG value before offset: 0.000V +I (265191) ECG_DEBUG: Max ECG value before offset: 0.007V +I (265251) ECG_DEBUG: Max ECG value before offset: 0.026V +I (265321) ECG_DEBUG: Max ECG value before offset: 0.026V +I (265381) ECG_DEBUG: Max ECG value before offset: 0.006V +I (265441) ECG_DEBUG: Max ECG value before offset: 0.029V +I (265501) ECG_DEBUG: Max ECG value before offset: 0.119V +I (265561) ECG_DEBUG: Max ECG value before offset: 0.030V +I (265621) ECG_DEBUG: Max ECG value before offset: 0.007V +I (265681) ECG_DEBUG: Max ECG value before offset: 0.032V +I (265741) ECG_DEBUG: Max ECG value before offset: 0.053V +I (265801) ECG_DEBUG: Max ECG value before offset: 0.053V +I (265861) ECG_DEBUG: Max ECG value before offset: 0.032V +I (265931) ECG_DEBUG: Max ECG value before offset: 0.007V +I (265961) MAIN: Generated 20000 samples at 20kHz (ECG) +I (265991) ECG_DEBUG: Max ECG value before offset: 0.001V +I (266051) ECG_DEBUG: Max ECG value before offset: 0.000V +I (266111) ECG_DEBUG: Max ECG value before offset: 0.000V +I (266171) ECG_DEBUG: Max ECG value before offset: 0.007V +I (266231) ECG_DEBUG: Max ECG value before offset: 0.026V +I (266301) ECG_DEBUG: Max ECG value before offset: 0.026V +I (266361) ECG_DEBUG: Max ECG value before offset: 0.006V +I (266421) ECG_DEBUG: Max ECG value before offset: 0.029V +I (266481) ECG_DEBUG: Max ECG value before offset: 0.119V +I (266541) ECG_DEBUG: Max ECG value before offset: 0.030V +I (266601) ECG_DEBUG: Max ECG value before offset: 0.007V +I (266661) ECG_DEBUG: Max ECG value before offset: 0.032V +I (266721) ECG_DEBUG: Max ECG value before offset: 0.053V +I (266781) ECG_DEBUG: Max ECG value before offset: 0.053V +I (266841) ECG_DEBUG: Max ECG value before offset: 0.032V +I (266911) ECG_DEBUG: Max ECG value before offset: 0.007V +I (266971) ECG_DEBUG: Max ECG value before offset: 0.001V +I (267031) ECG_DEBUG: Max ECG value before offset: 0.000V +I (267091) ECG_DEBUG: Max ECG value before offset: 0.000V +I (267151) ECG_DEBUG: Max ECG value before offset: 0.007V +I (267181) MAIN: Generated 20000 samples at 20kHz (ECG) +I (267211) ECG_DEBUG: Max ECG value before offset: 0.026V +I (267281) ECG_DEBUG: Max ECG value before offset: 0.026V +I (267341) ECG_DEBUG: Max ECG value before offset: 0.006V +I (267401) ECG_DEBUG: Max ECG value before offset: 0.029V +I (267461) ECG_DEBUG: Max ECG value before offset: 0.119V +I (267521) ECG_DEBUG: Max ECG value before offset: 0.030V +I (267581) ECG_DEBUG: Max ECG value before offset: 0.007V +I (267641) ECG_DEBUG: Max ECG value before offset: 0.032V +I (267701) ECG_DEBUG: Max ECG value before offset: 0.053V +I (267761) ECG_DEBUG: Max ECG value before offset: 0.053V +I (267821) ECG_DEBUG: Max ECG value before offset: 0.032V +I (267891) ECG_DEBUG: Max ECG value before offset: 0.007V +I (267951) ECG_DEBUG: Max ECG value before offset: 0.001V +I (268011) ECG_DEBUG: Max ECG value before offset: 0.000V +I (268071) ECG_DEBUG: Max ECG value before offset: 0.000V +I (268131) ECG_DEBUG: Max ECG value before offset: 0.007V +I (268191) ECG_DEBUG: Max ECG value before offset: 0.026V +I (268261) ECG_DEBUG: Max ECG value before offset: 0.026V +I (268321) ECG_DEBUG: Max ECG value before offset: 0.006V +I (268381) ECG_DEBUG: Max ECG value before offset: 0.029V +I (268411) MAIN: Generated 20000 samples at 20kHz (ECG) +I (268441) ECG_DEBUG: Max ECG value before offset: 0.119V +I (268501) ECG_DEBUG: Max ECG value before offset: 0.030V +I (268561) ECG_DEBUG: Max ECG value before offset: 0.007V +I (268621) ECG_DEBUG: Max ECG value before offset: 0.032V +I (268681) ECG_DEBUG: Max ECG value before offset: 0.053V +I (268741) ECG_DEBUG: Max ECG value before offset: 0.053V +I (268801) ECG_DEBUG: Max ECG value before offset: 0.032V +I (268871) ECG_DEBUG: Max ECG value before offset: 0.007V +I (268931) ECG_DEBUG: Max ECG value before offset: 0.001V +I (268991) ECG_DEBUG: Max ECG value before offset: 0.000V +I (269051) ECG_DEBUG: Max ECG value before offset: 0.000V +I (269111) ECG_DEBUG: Max ECG value before offset: 0.007V +I (269171) ECG_DEBUG: Max ECG value before offset: 0.026V +I (269241) ECG_DEBUG: Max ECG value before offset: 0.026V +I (269301) ECG_DEBUG: Max ECG value before offset: 0.006V +I (269361) ECG_DEBUG: Max ECG value before offset: 0.029V +I (269421) ECG_DEBUG: Max ECG value before offset: 0.119V +I (269481) ECG_DEBUG: Max ECG value before offset: 0.030V +I (269541) ECG_DEBUG: Max ECG value before offset: 0.007V +I (269601) ECG_DEBUG: Max ECG value before offset: 0.032V +I (269631) MAIN: Generated 20000 samples at 20kHz (ECG) +I (269661) ECG_DEBUG: Max ECG value before offset: 0.053V +I (269721) ECG_DEBUG: Max ECG value before offset: 0.053V +I (269781) ECG_DEBUG: Max ECG value before offset: 0.032V +I (269851) ECG_DEBUG: Max ECG value before offset: 0.007V +I (269911) ECG_DEBUG: Max ECG value before offset: 0.001V +I (269971) ECG_DEBUG: Max ECG value before offset: 0.000V +I (270031) ECG_DEBUG: Max ECG value before offset: 0.000V +I (270091) ECG_DEBUG: Max ECG value before offset: 0.007V +I (270151) ECG_DEBUG: Max ECG value before offset: 0.026V +I (270221) ECG_DEBUG: Max ECG value before offset: 0.026V +I (270281) ECG_DEBUG: Max ECG value before offset: 0.006V +I (270341) ECG_DEBUG: Max ECG value before offset: 0.029V +I (270401) ECG_DEBUG: Max ECG value before offset: 0.119V +I (270461) ECG_DEBUG: Max ECG value before offset: 0.030V +I (270521) ECG_DEBUG: Max ECG value before offset: 0.007V +I (270581) ECG_DEBUG: Max ECG value before offset: 0.032V +I (270641) ECG_DEBUG: Max ECG value before offset: 0.053V +I (270701) ECG_DEBUG: Max ECG value before offset: 0.053V +I (270761) ECG_DEBUG: Max ECG value before offset: 0.032V +I (270831) ECG_DEBUG: Max ECG value before offset: 0.007V +I (270861) MAIN: Generated 20000 samples at 20kHz (ECG) +I (270891) ECG_DEBUG: Max ECG value before offset: 0.001V +I (270951) ECG_DEBUG: Max ECG value before offset: 0.000V +I (271011) ECG_DEBUG: Max ECG value before offset: 0.000V +I (271071) ECG_DEBUG: Max ECG value before offset: 0.007V +I (271131) ECG_DEBUG: Max ECG value before offset: 0.026V +I (271201) ECG_DEBUG: Max ECG value before offset: 0.026V +I (271261) ECG_DEBUG: Max ECG value before offset: 0.006V +I (271321) ECG_DEBUG: Max ECG value before offset: 0.029V +I (271381) ECG_DEBUG: Max ECG value before offset: 0.119V +I (271441) ECG_DEBUG: Max ECG value before offset: 0.030V +I (271501) ECG_DEBUG: Max ECG value before offset: 0.007V +I (271561) ECG_DEBUG: Max ECG value before offset: 0.032V +I (271621) ECG_DEBUG: Max ECG value before offset: 0.053V +I (271681) ECG_DEBUG: Max ECG value before offset: 0.053V +I (271741) ECG_DEBUG: Max ECG value before offset: 0.032V +I (271811) ECG_DEBUG: Max ECG value before offset: 0.007V +I (271871) ECG_DEBUG: Max ECG value before offset: 0.001V +I (271931) ECG_DEBUG: Max ECG value before offset: 0.000V +I (271991) ECG_DEBUG: Max ECG value before offset: 0.000V +I (272051) ECG_DEBUG: Max ECG value before offset: 0.007V +I (272081) MAIN: Generated 20000 samples at 20kHz (ECG) +I (272111) ECG_DEBUG: Max ECG value before offset: 0.026V +I (272181) ECG_DEBUG: Max ECG value before offset: 0.026V +I (272241) ECG_DEBUG: Max ECG value before offset: 0.006V +I (272301) ECG_DEBUG: Max ECG value before offset: 0.029V +I (272361) ECG_DEBUG: Max ECG value before offset: 0.119V +I (272421) ECG_DEBUG: Max ECG value before offset: 0.030V +I (272481) ECG_DEBUG: Max ECG value before offset: 0.007V +I (272541) ECG_DEBUG: Max ECG value before offset: 0.032V +I (272601) ECG_DEBUG: Max ECG value before offset: 0.053V +I (272661) ECG_DEBUG: Max ECG value before offset: 0.053V +I (272721) ECG_DEBUG: Max ECG value before offset: 0.032V +I (272791) ECG_DEBUG: Max ECG value before offset: 0.007V +I (272851) ECG_DEBUG: Max ECG value before offset: 0.001V +I (272911) ECG_DEBUG: Max ECG value before offset: 0.000V +I (272971) ECG_DEBUG: Max ECG value before offset: 0.000V +I (273031) ECG_DEBUG: Max ECG value before offset: 0.007V +I (273091) ECG_DEBUG: Max ECG value before offset: 0.026V +I (273161) ECG_DEBUG: Max ECG value before offset: 0.026V +I (273221) ECG_DEBUG: Max ECG value before offset: 0.006V +I (273281) ECG_DEBUG: Max ECG value before offset: 0.029V +I (273311) MAIN: Generated 20000 samples at 20kHz (ECG) +I (273341) ECG_DEBUG: Max ECG value before offset: 0.119V +I (273401) ECG_DEBUG: Max ECG value before offset: 0.030V +I (273461) ECG_DEBUG: Max ECG value before offset: 0.007V +I (273521) ECG_DEBUG: Max ECG value before offset: 0.032V +I (273581) ECG_DEBUG: Max ECG value before offset: 0.053V +I (273641) ECG_DEBUG: Max ECG value before offset: 0.053V +I (273701) ECG_DEBUG: Max ECG value before offset: 0.032V +I (273771) ECG_DEBUG: Max ECG value before offset: 0.007V +I (273831) ECG_DEBUG: Max ECG value before offset: 0.001V +I (273891) ECG_DEBUG: Max ECG value before offset: 0.000V +I (273951) ECG_DEBUG: Max ECG value before offset: 0.000V +I (274011) ECG_DEBUG: Max ECG value before offset: 0.007V +I (274071) ECG_DEBUG: Max ECG value before offset: 0.026V +I (274141) ECG_DEBUG: Max ECG value before offset: 0.026V +I (274201) ECG_DEBUG: Max ECG value before offset: 0.006V +I (274261) ECG_DEBUG: Max ECG value before offset: 0.029V +I (274321) ECG_DEBUG: Max ECG value before offset: 0.119V +I (274381) ECG_DEBUG: Max ECG value before offset: 0.030V +I (274441) ECG_DEBUG: Max ECG value before offset: 0.007V +I (274501) ECG_DEBUG: Max ECG value before offset: 0.032V +I (274531) MAIN: Generated 20000 samples at 20kHz (ECG) +I (274561) ECG_DEBUG: Max ECG value before offset: 0.053V +I (274621) ECG_DEBUG: Max ECG value before offset: 0.053V +I (274681) ECG_DEBUG: Max ECG value before offset: 0.032V +I (274751) ECG_DEBUG: Max ECG value before offset: 0.007V +I (274811) ECG_DEBUG: Max ECG value before offset: 0.001V +I (274871) ECG_DEBUG: Max ECG value before offset: 0.000V +I (274931) ECG_DEBUG: Max ECG value before offset: 0.000V +I (274991) ECG_DEBUG: Max ECG value before offset: 0.007V +I (275051) ECG_DEBUG: Max ECG value before offset: 0.026V +I (275121) ECG_DEBUG: Max ECG value before offset: 0.026V +I (275181) ECG_DEBUG: Max ECG value before offset: 0.006V +I (275241) ECG_DEBUG: Max ECG value before offset: 0.029V +I (275301) ECG_DEBUG: Max ECG value before offset: 0.119V +I (275361) ECG_DEBUG: Max ECG value before offset: 0.030V +I (275421) ECG_DEBUG: Max ECG value before offset: 0.007V +I (275481) ECG_DEBUG: Max ECG value before offset: 0.032V +I (275541) ECG_DEBUG: Max ECG value before offset: 0.053V +I (275601) ECG_DEBUG: Max ECG value before offset: 0.053V +I (275661) ECG_DEBUG: Max ECG value before offset: 0.032V +I (275731) ECG_DEBUG: Max ECG value before offset: 0.007V +I (275761) MAIN: Generated 20000 samples at 20kHz (ECG) +I (275791) ECG_DEBUG: Max ECG value before offset: 0.001V +I (275851) ECG_DEBUG: Max ECG value before offset: 0.000V +I (275911) ECG_DEBUG: Max ECG value before offset: 0.000V +I (275971) ECG_DEBUG: Max ECG value before offset: 0.007V +I (276031) ECG_DEBUG: Max ECG value before offset: 0.026V +I (276101) ECG_DEBUG: Max ECG value before offset: 0.026V +I (276161) ECG_DEBUG: Max ECG value before offset: 0.006V +I (276221) ECG_DEBUG: Max ECG value before offset: 0.029V +I (276281) ECG_DEBUG: Max ECG value before offset: 0.119V +I (276341) ECG_DEBUG: Max ECG value before offset: 0.030V +I (276401) ECG_DEBUG: Max ECG value before offset: 0.007V +I (276461) ECG_DEBUG: Max ECG value before offset: 0.032V +I (276521) ECG_DEBUG: Max ECG value before offset: 0.053V +I (276581) ECG_DEBUG: Max ECG value before offset: 0.053V +I (276641) ECG_DEBUG: Max ECG value before offset: 0.032V +I (276711) ECG_DEBUG: Max ECG value before offset: 0.007V +I (276771) ECG_DEBUG: Max ECG value before offset: 0.001V +I (276831) ECG_DEBUG: Max ECG value before offset: 0.000V +I (276891) ECG_DEBUG: Max ECG value before offset: 0.000V +I (276951) ECG_DEBUG: Max ECG value before offset: 0.007V +I (276981) MAIN: Generated 20000 samples at 20kHz (ECG) +I (277011) ECG_DEBUG: Max ECG value before offset: 0.026V +I (277081) ECG_DEBUG: Max ECG value before offset: 0.026V +I (277141) ECG_DEBUG: Max ECG value before offset: 0.006V +I (277201) ECG_DEBUG: Max ECG value before offset: 0.029V +I (277261) ECG_DEBUG: Max ECG value before offset: 0.119V +I (277321) ECG_DEBUG: Max ECG value before offset: 0.030V +I (277381) ECG_DEBUG: Max ECG value before offset: 0.007V +I (277441) ECG_DEBUG: Max ECG value before offset: 0.032V +I (277501) ECG_DEBUG: Max ECG value before offset: 0.053V +I (277561) ECG_DEBUG: Max ECG value before offset: 0.053V +I (277621) ECG_DEBUG: Max ECG value before offset: 0.032V +I (277691) ECG_DEBUG: Max ECG value before offset: 0.007V +I (277751) ECG_DEBUG: Max ECG value before offset: 0.001V +I (277811) ECG_DEBUG: Max ECG value before offset: 0.000V +I (277871) ECG_DEBUG: Max ECG value before offset: 0.000V +I (277931) ECG_DEBUG: Max ECG value before offset: 0.007V +I (277991) ECG_DEBUG: Max ECG value before offset: 0.026V +I (278061) ECG_DEBUG: Max ECG value before offset: 0.026V +I (278121) ECG_DEBUG: Max ECG value before offset: 0.006V +I (278181) ECG_DEBUG: Max ECG value before offset: 0.029V +I (278211) MAIN: Generated 20000 samples at 20kHz (ECG) +I (278241) ECG_DEBUG: Max ECG value before offset: 0.119V +I (278301) ECG_DEBUG: Max ECG value before offset: 0.030V +I (278361) ECG_DEBUG: Max ECG value before offset: 0.007V +I (278421) ECG_DEBUG: Max ECG value before offset: 0.032V +I (278481) ECG_DEBUG: Max ECG value before offset: 0.053V +I (278541) ECG_DEBUG: Max ECG value before offset: 0.053V +I (278601) ECG_DEBUG: Max ECG value before offset: 0.032V +I (278671) ECG_DEBUG: Max ECG value before offset: 0.007V +I (278731) ECG_DEBUG: Max ECG value before offset: 0.001V +I (278791) ECG_DEBUG: Max ECG value before offset: 0.000V +I (278851) ECG_DEBUG: Max ECG value before offset: 0.000V +I (278911) ECG_DEBUG: Max ECG value before offset: 0.007V +I (278971) ECG_DEBUG: Max ECG value before offset: 0.026V +I (279041) ECG_DEBUG: Max ECG value before offset: 0.026V +I (279101) ECG_DEBUG: Max ECG value before offset: 0.006V +I (279161) ECG_DEBUG: Max ECG value before offset: 0.029V +I (279221) ECG_DEBUG: Max ECG value before offset: 0.119V +I (279281) ECG_DEBUG: Max ECG value before offset: 0.030V +I (279341) ECG_DEBUG: Max ECG value before offset: 0.007V +I (279401) ECG_DEBUG: Max ECG value before offset: 0.032V +I (279431) MAIN: Generated 20000 samples at 20kHz (ECG) +I (279461) ECG_DEBUG: Max ECG value before offset: 0.053V +I (279521) ECG_DEBUG: Max ECG value before offset: 0.053V +I (279581) ECG_DEBUG: Max ECG value before offset: 0.032V +I (279651) ECG_DEBUG: Max ECG value before offset: 0.007V +I (279711) ECG_DEBUG: Max ECG value before offset: 0.001V +I (279771) ECG_DEBUG: Max ECG value before offset: 0.000V +I (279831) ECG_DEBUG: Max ECG value before offset: 0.000V +I (279891) ECG_DEBUG: Max ECG value before offset: 0.007V +I (279951) ECG_DEBUG: Max ECG value before offset: 0.026V +I (280021) ECG_DEBUG: Max ECG value before offset: 0.026V +I (280081) ECG_DEBUG: Max ECG value before offset: 0.006V +I (280141) ECG_DEBUG: Max ECG value before offset: 0.029V +I (280201) ECG_DEBUG: Max ECG value before offset: 0.119V +I (280261) ECG_DEBUG: Max ECG value before offset: 0.030V +I (280321) ECG_DEBUG: Max ECG value before offset: 0.007V +I (280381) ECG_DEBUG: Max ECG value before offset: 0.032V +I (280441) ECG_DEBUG: Max ECG value before offset: 0.053V +I (280501) ECG_DEBUG: Max ECG value before offset: 0.053V +I (280561) ECG_DEBUG: Max ECG value before offset: 0.032V +I (280631) ECG_DEBUG: Max ECG value before offset: 0.007V +I (280661) MAIN: Generated 20000 samples at 20kHz (ECG) +I (280691) ECG_DEBUG: Max ECG value before offset: 0.001V +I (280751) ECG_DEBUG: Max ECG value before offset: 0.000V +I (280811) ECG_DEBUG: Max ECG value before offset: 0.000V +I (280871) ECG_DEBUG: Max ECG value before offset: 0.007V +I (280941) ECG_DEBUG: Max ECG value before offset: 0.026V +I (281001) ECG_DEBUG: Max ECG value before offset: 0.026V +I (281061) ECG_DEBUG: Max ECG value before offset: 0.006V +I (281121) ECG_DEBUG: Max ECG value before offset: 0.029V +I (281181) MAIN: DRAM Total: 367363 bytes, Used: 57128 bytes, Free: 310235 bytes, DRAM_Largest_block: 249856 bytes +I (281181) ECG_DEBUG: Max ECG value before offset: 0.119V +I (281181) MAIN: DRAM Used: 15.55% +I (281191) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (281201) MAIN: PSRAM Used: 0.03% +I (281241) ECG_DEBUG: Max ECG value before offset: 0.030V +I (281301) ECG_DEBUG: Max ECG value before offset: 0.007V +I (281361) ECG_DEBUG: Max ECG value before offset: 0.032V +I (281431) ECG_DEBUG: Max ECG value before offset: 0.053V +I (281491) ECG_DEBUG: Max ECG value before offset: 0.053V +I (281551) ECG_DEBUG: Max ECG value before offset: 0.032V +I (281611) ECG_DEBUG: Max ECG value before offset: 0.007V +I (281671) ECG_DEBUG: Max ECG value before offset: 0.001V +I (281741) ECG_DEBUG: Max ECG value before offset: 0.000V +I (281801) ECG_DEBUG: Max ECG value before offset: 0.000V +I (281861) ECG_DEBUG: Max ECG value before offset: 0.007V +I (281891) MAIN: Generated 20000 samples at 20kHz (ECG) +I (281921) ECG_DEBUG: Max ECG value before offset: 0.026V +I (281981) ECG_DEBUG: Max ECG value before offset: 0.026V +I (282041) ECG_DEBUG: Max ECG value before offset: 0.006V +I (282101) ECG_DEBUG: Max ECG value before offset: 0.029V +I (282161) ECG_DEBUG: Max ECG value before offset: 0.119V +I (282221) ECG_DEBUG: Max ECG value before offset: 0.030V +I (282281) ECG_DEBUG: Max ECG value before offset: 0.007V +I (282341) ECG_DEBUG: Max ECG value before offset: 0.032V +I (282411) ECG_DEBUG: Max ECG value before offset: 0.053V +I (282471) ECG_DEBUG: Max ECG value before offset: 0.053V +I (282531) ECG_DEBUG: Max ECG value before offset: 0.032V +I (282591) ECG_DEBUG: Max ECG value before offset: 0.007V +I (282651) ECG_DEBUG: Max ECG value before offset: 0.001V +I (282711) ECG_DEBUG: Max ECG value before offset: 0.000V +I (282781) ECG_DEBUG: Max ECG value before offset: 0.000V +I (282841) ECG_DEBUG: Max ECG value before offset: 0.007V +I (282901) ECG_DEBUG: Max ECG value before offset: 0.026V +I (282961) ECG_DEBUG: Max ECG value before offset: 0.026V +I (283021) ECG_DEBUG: Max ECG value before offset: 0.006V +I (283081) ECG_DEBUG: Max ECG value before offset: 0.029V +I (283111) MAIN: Generated 20000 samples at 20kHz (ECG) +I (283141) ECG_DEBUG: Max ECG value before offset: 0.119V +I (283201) ECG_DEBUG: Max ECG value before offset: 0.030V +I (283261) ECG_DEBUG: Max ECG value before offset: 0.007V +I (283321) ECG_DEBUG: Max ECG value before offset: 0.032V +I (283391) ECG_DEBUG: Max ECG value before offset: 0.053V +I (283451) ECG_DEBUG: Max ECG value before offset: 0.053V +I (283511) ECG_DEBUG: Max ECG value before offset: 0.032V +I (283571) ECG_DEBUG: Max ECG value before offset: 0.007V +I (283631) ECG_DEBUG: Max ECG value before offset: 0.001V +I (283691) ECG_DEBUG: Max ECG value before offset: 0.000V +I (283761) ECG_DEBUG: Max ECG value before offset: 0.000V +I (283821) ECG_DEBUG: Max ECG value before offset: 0.007V +I (283881) ECG_DEBUG: Max ECG value before offset: 0.026V +I (283941) ECG_DEBUG: Max ECG value before offset: 0.026V +I (284001) ECG_DEBUG: Max ECG value before offset: 0.006V +I (284061) ECG_DEBUG: Max ECG value before offset: 0.029V +I (284121) ECG_DEBUG: Max ECG value before offset: 0.119V +I (284181) ECG_DEBUG: Max ECG value before offset: 0.030V +I (284241) ECG_DEBUG: Max ECG value before offset: 0.007V +I (284301) ECG_DEBUG: Max ECG value before offset: 0.032V +I (284331) MAIN: Generated 20000 samples at 20kHz (ECG) +I (284371) ECG_DEBUG: Max ECG value before offset: 0.053V +I (284431) ECG_DEBUG: Max ECG value before offset: 0.053V +I (284491) ECG_DEBUG: Max ECG value before offset: 0.032V +I (284551) ECG_DEBUG: Max ECG value before offset: 0.007V +I (284611) ECG_DEBUG: Max ECG value before offset: 0.001V +I (284671) ECG_DEBUG: Max ECG value before offset: 0.000V +I (284741) ECG_DEBUG: Max ECG value before offset: 0.000V +I (284801) ECG_DEBUG: Max ECG value before offset: 0.007V +I (284861) ECG_DEBUG: Max ECG value before offset: 0.026V +I (284921) ECG_DEBUG: Max ECG value before offset: 0.026V +I (284981) ECG_DEBUG: Max ECG value before offset: 0.006V +I (285041) ECG_DEBUG: Max ECG value before offset: 0.029V +I (285101) ECG_DEBUG: Max ECG value before offset: 0.119V +I (285161) ECG_DEBUG: Max ECG value before offset: 0.030V +I (285221) ECG_DEBUG: Max ECG value before offset: 0.007V +I (285281) ECG_DEBUG: Max ECG value before offset: 0.032V +I (285351) ECG_DEBUG: Max ECG value before offset: 0.053V +I (285411) ECG_DEBUG: Max ECG value before offset: 0.053V +I (285471) ECG_DEBUG: Max ECG value before offset: 0.032V +I (285531) ECG_DEBUG: Max ECG value before offset: 0.007V +I (285561) MAIN: Generated 20000 samples at 20kHz (ECG) +I (285591) ECG_DEBUG: Max ECG value before offset: 0.001V +I (285651) ECG_DEBUG: Max ECG value before offset: 0.000V +I (285721) ECG_DEBUG: Max ECG value before offset: 0.000V +I (285781) ECG_DEBUG: Max ECG value before offset: 0.007V +I (285841) ECG_DEBUG: Max ECG value before offset: 0.026V +I (285901) ECG_DEBUG: Max ECG value before offset: 0.026V +I (285961) ECG_DEBUG: Max ECG value before offset: 0.006V +I (286021) ECG_DEBUG: Max ECG value before offset: 0.029V +I (286081) ECG_DEBUG: Max ECG value before offset: 0.119V +I (286141) ECG_DEBUG: Max ECG value before offset: 0.030V +I (286201) ECG_DEBUG: Max ECG value before offset: 0.007V +I (286261) ECG_DEBUG: Max ECG value before offset: 0.032V +I (286331) ECG_DEBUG: Max ECG value before offset: 0.053V +I (286391) ECG_DEBUG: Max ECG value before offset: 0.053V +I (286451) ECG_DEBUG: Max ECG value before offset: 0.032V +I (286511) ECG_DEBUG: Max ECG value before offset: 0.007V +I (286571) ECG_DEBUG: Max ECG value before offset: 0.001V +I (286631) ECG_DEBUG: Max ECG value before offset: 0.000V +I (286701) ECG_DEBUG: Max ECG value before offset: 0.000V +I (286761) ECG_DEBUG: Max ECG value before offset: 0.007V +I (286791) MAIN: Generated 20000 samples at 20kHz (ECG) +I (286821) ECG_DEBUG: Max ECG value before offset: 0.026V +I (286881) ECG_DEBUG: Max ECG value before offset: 0.026V +I (286941) ECG_DEBUG: Max ECG value before offset: 0.006V +I (287001) ECG_DEBUG: Max ECG value before offset: 0.029V +I (287061) ECG_DEBUG: Max ECG value before offset: 0.119V +I (287121) ECG_DEBUG: Max ECG value before offset: 0.030V +I (287181) ECG_DEBUG: Max ECG value before offset: 0.007V +I (287241) ECG_DEBUG: Max ECG value before offset: 0.032V +I (287311) ECG_DEBUG: Max ECG value before offset: 0.053V +I (287371) ECG_DEBUG: Max ECG value before offset: 0.053V +I (287431) ECG_DEBUG: Max ECG value before offset: 0.032V +I (287491) ECG_DEBUG: Max ECG value before offset: 0.007V +I (287551) ECG_DEBUG: Max ECG value before offset: 0.001V +I (287611) ECG_DEBUG: Max ECG value before offset: 0.000V +I (287681) ECG_DEBUG: Max ECG value before offset: 0.000V +I (287741) ECG_DEBUG: Max ECG value before offset: 0.007V +I (287801) ECG_DEBUG: Max ECG value before offset: 0.026V +I (287861) ECG_DEBUG: Max ECG value before offset: 0.026V +I (287921) ECG_DEBUG: Max ECG value before offset: 0.006V +I (287981) ECG_DEBUG: Max ECG value before offset: 0.029V +I (288011) MAIN: Generated 20000 samples at 20kHz (ECG) +I (288041) ECG_DEBUG: Max ECG value before offset: 0.119V +I (288101) ECG_DEBUG: Max ECG value before offset: 0.030V +I (288161) ECG_DEBUG: Max ECG value before offset: 0.007V +I (288221) ECG_DEBUG: Max ECG value before offset: 0.032V +I (288291) ECG_DEBUG: Max ECG value before offset: 0.053V +I (288351) ECG_DEBUG: Max ECG value before offset: 0.053V +I (288411) ECG_DEBUG: Max ECG value before offset: 0.032V +I (288471) ECG_DEBUG: Max ECG value before offset: 0.007V +I (288531) ECG_DEBUG: Max ECG value before offset: 0.001V +I (288591) ECG_DEBUG: Max ECG value before offset: 0.000V +I (288661) ECG_DEBUG: Max ECG value before offset: 0.000V +I (288721) ECG_DEBUG: Max ECG value before offset: 0.007V +I (288781) ECG_DEBUG: Max ECG value before offset: 0.026V +I (288841) ECG_DEBUG: Max ECG value before offset: 0.026V +I (288901) ECG_DEBUG: Max ECG value before offset: 0.006V +I (288961) ECG_DEBUG: Max ECG value before offset: 0.029V +I (289021) ECG_DEBUG: Max ECG value before offset: 0.119V +I (289081) ECG_DEBUG: Max ECG value before offset: 0.030V +I (289141) ECG_DEBUG: Max ECG value before offset: 0.007V +I (289201) ECG_DEBUG: Max ECG value before offset: 0.032V +I (289231) MAIN: Generated 20000 samples at 20kHz (ECG) +I (289271) ECG_DEBUG: Max ECG value before offset: 0.053V +I (289331) ECG_DEBUG: Max ECG value before offset: 0.053V +I (289391) ECG_DEBUG: Max ECG value before offset: 0.032V +I (289451) ECG_DEBUG: Max ECG value before offset: 0.007V +I (289511) ECG_DEBUG: Max ECG value before offset: 0.001V +I (289571) ECG_DEBUG: Max ECG value before offset: 0.000V +I (289641) ECG_DEBUG: Max ECG value before offset: 0.000V +I (289701) ECG_DEBUG: Max ECG value before offset: 0.007V +I (289761) ECG_DEBUG: Max ECG value before offset: 0.026V +I (289821) ECG_DEBUG: Max ECG value before offset: 0.026V +I (289881) ECG_DEBUG: Max ECG value before offset: 0.006V +I (289941) ECG_DEBUG: Max ECG value before offset: 0.029V +I (290001) ECG_DEBUG: Max ECG value before offset: 0.119V +I (290061) ECG_DEBUG: Max ECG value before offset: 0.030V +I (290121) ECG_DEBUG: Max ECG value before offset: 0.007V +I (290181) ECG_DEBUG: Max ECG value before offset: 0.032V +I (290241) ECG_DEBUG: Max ECG value before offset: 0.053V +I (290311) ECG_DEBUG: Max ECG value before offset: 0.053V +I (290371) ECG_DEBUG: Max ECG value before offset: 0.032V +I (290431) ECG_DEBUG: Max ECG value before offset: 0.007V +I (290461) MAIN: Generated 20000 samples at 20kHz (ECG) +I (290491) ECG_DEBUG: Max ECG value before offset: 0.001V +I (290551) ECG_DEBUG: Max ECG value before offset: 0.000V +I (290621) ECG_DEBUG: Max ECG value before offset: 0.000V +I (290681) ECG_DEBUG: Max ECG value before offset: 0.007V +I (290741) ECG_DEBUG: Max ECG value before offset: 0.026V +I (290801) ECG_DEBUG: Max ECG value before offset: 0.026V +I (290861) ECG_DEBUG: Max ECG value before offset: 0.006V +I (290921) ECG_DEBUG: Max ECG value before offset: 0.029V +I (290981) ECG_DEBUG: Max ECG value before offset: 0.119V +I (291041) ECG_DEBUG: Max ECG value before offset: 0.030V +I (291101) ECG_DEBUG: Max ECG value before offset: 0.007V +I (291161) ECG_DEBUG: Max ECG value before offset: 0.032V +I (291221) ECG_DEBUG: Max ECG value before offset: 0.053V +I (291291) ECG_DEBUG: Max ECG value before offset: 0.053V +I (291351) ECG_DEBUG: Max ECG value before offset: 0.032V +I (291411) ECG_DEBUG: Max ECG value before offset: 0.007V +I (291471) ECG_DEBUG: Max ECG value before offset: 0.001V +I (291531) ECG_DEBUG: Max ECG value before offset: 0.000V +I (291601) ECG_DEBUG: Max ECG value before offset: 0.000V +I (291661) ECG_DEBUG: Max ECG value before offset: 0.007V +I (291691) MAIN: Generated 20000 samples at 20kHz (ECG) +I (291721) ECG_DEBUG: Max ECG value before offset: 0.026V +I (291781) ECG_DEBUG: Max ECG value before offset: 0.026V +I (291841) ECG_DEBUG: Max ECG value before offset: 0.006V +I (291901) ECG_DEBUG: Max ECG value before offset: 0.029V +I (291961) ECG_DEBUG: Max ECG value before offset: 0.119V +I (292021) ECG_DEBUG: Max ECG value before offset: 0.030V +I (292081) ECG_DEBUG: Max ECG value before offset: 0.007V +I (292141) ECG_DEBUG: Max ECG value before offset: 0.032V +I (292201) ECG_DEBUG: Max ECG value before offset: 0.053V +I (292271) ECG_DEBUG: Max ECG value before offset: 0.053V +I (292331) ECG_DEBUG: Max ECG value before offset: 0.032V +I (292391) ECG_DEBUG: Max ECG value before offset: 0.007V +I (292451) ECG_DEBUG: Max ECG value before offset: 0.001V +I (292511) ECG_DEBUG: Max ECG value before offset: 0.000V +I (292581) ECG_DEBUG: Max ECG value before offset: 0.000V +I (292641) ECG_DEBUG: Max ECG value before offset: 0.007V +I (292701) ECG_DEBUG: Max ECG value before offset: 0.026V +I (292761) ECG_DEBUG: Max ECG value before offset: 0.026V +I (292821) ECG_DEBUG: Max ECG value before offset: 0.006V +I (292881) ECG_DEBUG: Max ECG value before offset: 0.029V +I (292911) MAIN: Generated 20000 samples at 20kHz (ECG) +I (292941) ECG_DEBUG: Max ECG value before offset: 0.119V +I (293001) ECG_DEBUG: Max ECG value before offset: 0.030V +I (293061) ECG_DEBUG: Max ECG value before offset: 0.007V +I (293121) ECG_DEBUG: Max ECG value before offset: 0.032V +I (293181) ECG_DEBUG: Max ECG value before offset: 0.053V +I (293251) ECG_DEBUG: Max ECG value before offset: 0.053V +I (293311) ECG_DEBUG: Max ECG value before offset: 0.032V +I (293371) ECG_DEBUG: Max ECG value before offset: 0.007V +I (293431) ECG_DEBUG: Max ECG value before offset: 0.001V +I (293491) ECG_DEBUG: Max ECG value before offset: 0.000V +I (293561) ECG_DEBUG: Max ECG value before offset: 0.000V +I (293621) ECG_DEBUG: Max ECG value before offset: 0.007V +I (293681) ECG_DEBUG: Max ECG value before offset: 0.026V +I (293741) ECG_DEBUG: Max ECG value before offset: 0.026V +I (293801) ECG_DEBUG: Max ECG value before offset: 0.006V +I (293861) ECG_DEBUG: Max ECG value before offset: 0.029V +I (293921) ECG_DEBUG: Max ECG value before offset: 0.119V +I (293981) ECG_DEBUG: Max ECG value before offset: 0.030V +I (294041) ECG_DEBUG: Max ECG value before offset: 0.007V +I (294101) ECG_DEBUG: Max ECG value before offset: 0.032V +I (294131) MAIN: Generated 20000 samples at 20kHz (ECG) +I (294161) ECG_DEBUG: Max ECG value before offset: 0.053V +I (294231) ECG_DEBUG: Max ECG value before offset: 0.053V +I (294291) ECG_DEBUG: Max ECG value before offset: 0.032V +I (294351) ECG_DEBUG: Max ECG value before offset: 0.007V +I (294411) ECG_DEBUG: Max ECG value before offset: 0.001V +I (294471) ECG_DEBUG: Max ECG value before offset: 0.000V +I (294541) ECG_DEBUG: Max ECG value before offset: 0.000V +I (294601) ECG_DEBUG: Max ECG value before offset: 0.007V +I (294661) ECG_DEBUG: Max ECG value before offset: 0.026V +I (294721) ECG_DEBUG: Max ECG value before offset: 0.026V +I (294781) ECG_DEBUG: Max ECG value before offset: 0.006V +I (294841) ECG_DEBUG: Max ECG value before offset: 0.029V +I (294901) ECG_DEBUG: Max ECG value before offset: 0.119V +I (294961) ECG_DEBUG: Max ECG value before offset: 0.030V +I (295021) ECG_DEBUG: Max ECG value before offset: 0.007V +I (295081) ECG_DEBUG: Max ECG value before offset: 0.032V +I (295141) ECG_DEBUG: Max ECG value before offset: 0.053V +I (295211) ECG_DEBUG: Max ECG value before offset: 0.053V +I (295271) ECG_DEBUG: Max ECG value before offset: 0.032V +I (295331) ECG_DEBUG: Max ECG value before offset: 0.007V +I (295361) MAIN: Generated 20000 samples at 20kHz (ECG) +I (295391) ECG_DEBUG: Max ECG value before offset: 0.001V +I (295451) ECG_DEBUG: Max ECG value before offset: 0.000V +I (295521) ECG_DEBUG: Max ECG value before offset: 0.000V +I (295581) ECG_DEBUG: Max ECG value before offset: 0.007V +I (295641) ECG_DEBUG: Max ECG value before offset: 0.026V +I (295701) ECG_DEBUG: Max ECG value before offset: 0.026V +I (295761) ECG_DEBUG: Max ECG value before offset: 0.006V +I (295821) ECG_DEBUG: Max ECG value before offset: 0.029V +I (295881) ECG_DEBUG: Max ECG value before offset: 0.119V +I (295941) ECG_DEBUG: Max ECG value before offset: 0.030V +I (296001) ECG_DEBUG: Max ECG value before offset: 0.007V +I (296061) ECG_DEBUG: Max ECG value before offset: 0.032V +I (296121) ECG_DEBUG: Max ECG value before offset: 0.053V +I (296191) ECG_DEBUG: Max ECG value before offset: 0.053V +I (296251) ECG_DEBUG: Max ECG value before offset: 0.032V +I (296311) ECG_DEBUG: Max ECG value before offset: 0.007V +I (296371) ECG_DEBUG: Max ECG value before offset: 0.001V +I (296431) ECG_DEBUG: Max ECG value before offset: 0.000V +I (296501) ECG_DEBUG: Max ECG value before offset: 0.000V +I (296561) ECG_DEBUG: Max ECG value before offset: 0.007V +I (296591) MAIN: Generated 20000 samples at 20kHz (ECG) +I (296621) ECG_DEBUG: Max ECG value before offset: 0.026V +I (296681) ECG_DEBUG: Max ECG value before offset: 0.026V +I (296741) ECG_DEBUG: Max ECG value before offset: 0.006V +I (296801) ECG_DEBUG: Max ECG value before offset: 0.029V +I (296861) ECG_DEBUG: Max ECG value before offset: 0.119V +I (296921) ECG_DEBUG: Max ECG value before offset: 0.030V +I (296981) ECG_DEBUG: Max ECG value before offset: 0.007V +I (297041) ECG_DEBUG: Max ECG value before offset: 0.032V +I (297101) ECG_DEBUG: Max ECG value before offset: 0.053V +I (297171) ECG_DEBUG: Max ECG value before offset: 0.053V +I (297231) ECG_DEBUG: Max ECG value before offset: 0.032V +I (297291) ECG_DEBUG: Max ECG value before offset: 0.007V +I (297351) ECG_DEBUG: Max ECG value before offset: 0.001V +I (297411) ECG_DEBUG: Max ECG value before offset: 0.000V +I (297481) ECG_DEBUG: Max ECG value before offset: 0.000V +I (297541) ECG_DEBUG: Max ECG value before offset: 0.007V +I (297601) ECG_DEBUG: Max ECG value before offset: 0.026V +I (297661) ECG_DEBUG: Max ECG value before offset: 0.026V +I (297721) ECG_DEBUG: Max ECG value before offset: 0.006V +I (297781) ECG_DEBUG: Max ECG value before offset: 0.029V +I (297811) MAIN: Generated 20000 samples at 20kHz (ECG) +I (297841) ECG_DEBUG: Max ECG value before offset: 0.119V +I (297901) ECG_DEBUG: Max ECG value before offset: 0.030V +I (297961) ECG_DEBUG: Max ECG value before offset: 0.007V +I (298021) ECG_DEBUG: Max ECG value before offset: 0.032V +I (298081) ECG_DEBUG: Max ECG value before offset: 0.053V +I (298151) ECG_DEBUG: Max ECG value before offset: 0.053V +I (298211) ECG_DEBUG: Max ECG value before offset: 0.032V +I (298271) ECG_DEBUG: Max ECG value before offset: 0.007V +I (298331) ECG_DEBUG: Max ECG value before offset: 0.001V +I (298391) ECG_DEBUG: Max ECG value before offset: 0.000V +I (298461) ECG_DEBUG: Max ECG value before offset: 0.000V +I (298521) ECG_DEBUG: Max ECG value before offset: 0.007V +I (298581) ECG_DEBUG: Max ECG value before offset: 0.026V +I (298641) ECG_DEBUG: Max ECG value before offset: 0.026V +I (298701) ECG_DEBUG: Max ECG value before offset: 0.006V +I (298761) ECG_DEBUG: Max ECG value before offset: 0.029V +I (298821) ECG_DEBUG: Max ECG value before offset: 0.119V +I (298881) ECG_DEBUG: Max ECG value before offset: 0.030V +I (298941) ECG_DEBUG: Max ECG value before offset: 0.007V +I (299001) ECG_DEBUG: Max ECG value before offset: 0.032V +I (299031) MAIN: Generated 20000 samples at 20kHz (ECG) +I (299071) ECG_DEBUG: Max ECG value before offset: 0.053V +I (299131) ECG_DEBUG: Max ECG value before offset: 0.053V +I (299191) ECG_DEBUG: Max ECG value before offset: 0.032V +I (299251) ECG_DEBUG: Max ECG value before offset: 0.007V +I (299311) ECG_DEBUG: Max ECG value before offset: 0.001V +I (299371) ECG_DEBUG: Max ECG value before offset: 0.000V +I (299441) ECG_DEBUG: Max ECG value before offset: 0.000V +I (299501) ECG_DEBUG: Max ECG value before offset: 0.007V +I (299561) ECG_DEBUG: Max ECG value before offset: 0.026V +I (299621) ECG_DEBUG: Max ECG value before offset: 0.026V +I (299681) ECG_DEBUG: Max ECG value before offset: 0.006V +I (299741) ECG_DEBUG: Max ECG value before offset: 0.029V +I (299801) ECG_DEBUG: Max ECG value before offset: 0.119V +I (299861) ECG_DEBUG: Max ECG value before offset: 0.030V +I (299921) ECG_DEBUG: Max ECG value before offset: 0.007V +I (299981) ECG_DEBUG: Max ECG value before offset: 0.032V +I (300051) ECG_DEBUG: Max ECG value before offset: 0.053V +I (300111) ECG_DEBUG: Max ECG value before offset: 0.053V +I (300171) ECG_DEBUG: Max ECG value before offset: 0.032V +I (300231) ECG_DEBUG: Max ECG value before offset: 0.007V +I (300261) MAIN: Generated 20000 samples at 20kHz (ECG) +I (300291) ECG_DEBUG: Max ECG value before offset: 0.001V +I (300361) ECG_DEBUG: Max ECG value before offset: 0.000V +I (300421) ECG_DEBUG: Max ECG value before offset: 0.000V +I (300481) ECG_DEBUG: Max ECG value before offset: 0.007V +I (300541) ECG_DEBUG: Max ECG value before offset: 0.026V +I (300601) ECG_DEBUG: Max ECG value before offset: 0.026V +I (300661) ECG_DEBUG: Max ECG value before offset: 0.006V +I (300721) ECG_DEBUG: Max ECG value before offset: 0.029V +I (300781) ECG_DEBUG: Max ECG value before offset: 0.119V +I (300841) ECG_DEBUG: Max ECG value before offset: 0.030V +I (300901) ECG_DEBUG: Max ECG value before offset: 0.007V +I (300961) ECG_DEBUG: Max ECG value before offset: 0.032V +I (301031) ECG_DEBUG: Max ECG value before offset: 0.053V +I (301091) ECG_DEBUG: Max ECG value before offset: 0.053V +I (301151) ECG_DEBUG: Max ECG value before offset: 0.032V +I (301201) MAIN: DRAM Total: 367363 bytes, Used: 57128 bytes, Free: 310235 bytes, DRAM_Largest_block: 249856 bytes +I (301201) MAIN: DRAM Used: 15.55% +I (301201) MAIN: PSRAM Total: 8388608 bytes, Used: 2672 bytes, Free: 8385936 bytes, PSRAM_Largest_block: 8257536 bytes +I (301211) ECG_DEBUG: Max ECG value before offset: 0.007V +I (301221) MAIN: PSRAM Used: 0.03% +I (301281) ECG_DEBUG: Max ECG value before offset: 0.001V +I (301341) ECG_DEBUG: Max ECG value before offset: 0.000V +I (301401) ECG_DEBUG: Max ECG value before offset: 0.000V +I (301471) ECG_DEBUG: Max ECG value before offset: 0.007V +I (301491) MAIN: Generated 20000 samples at 20kHz (ECG) +I (301531) ECG_DEBUG: Max ECG value before offset: 0.026V +I (301591) ECG_DEBUG: Max ECG value before offset: 0.026V +I (301651) ECG_DEBUG: Max ECG value before offset: 0.006V +I (301711) ECG_DEBUG: Max ECG value before offset: 0.029V +I (301771) ECG_DEBUG: Max ECG value before offset: 0.119V +I (301831) ECG_DEBUG: Max ECG value before offset: 0.030V +I (301891) ECG_DEBUG: Max ECG value before offset: 0.007V +I (301951) ECG_DEBUG: Max ECG value before offset: 0.032V +I (302011) ECG_DEBUG: Max ECG value before offset: 0.053V diff --git a/build/log/idf_py_stdout_output_6804 b/build/log/idf_py_stdout_output_6804 new file mode 100644 index 0000000..47731a4 --- /dev/null +++ b/build/log/idf_py_stdout_output_6804 @@ -0,0 +1,8 @@ +Command: ninja all +[1/4] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" +SIM_S3_1.bin binary size 0x48a60 bytes. Smallest app partition is 0x300000 bytes. 0x2b75a0 bytes (91%) free. +[2/4] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" +Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. +[3/4] No install step for 'bootloader' +[4/4] Completed 'bootloader' diff --git a/build/log/idf_py_stdout_output_7556 b/build/log/idf_py_stdout_output_7556 new file mode 100644 index 0000000..957b5eb --- /dev/null +++ b/build/log/idf_py_stdout_output_7556 @@ -0,0 +1,71 @@ +Command: ninja all +[1/23] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" +Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. +[2/23] No install step for 'bootloader' +[3/23] Completed 'bootloader' +[4/23] Building C object esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj +[5/23] Linking C static library esp-idf\esp_app_format\libesp_app_format.a +[6/23] Building C object esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/ecg_generator.c.obj +[7/23] Building C object esp-idf/signal_generators/CMakeFiles/__idf_signal_generators.dir/src/sine_generator.c.obj +[8/23] Linking C static library esp-idf\signal_generators\libsignal_generators.a +[9/23] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/esp_hidd_prf_api.c.obj +FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/bt/esp_hidd_prf_api.c.obj +ccache C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/bt/esp_hidd_prf_api.c.obj -MF esp-idf\main\CMakeFiles\__idf_main.dir\bt\esp_hidd_prf_api.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/bt/esp_hidd_prf_api.c.obj -c C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/esp_hidd_prf_api.c +In file included from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/esp_hidd_prf_api.c:7: +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/esp_hidd_prf_api.h:10:10: fatal error: esp_bt_defs.h: No such file or directory + 10 | #include "esp_bt_defs.h" + | ^~~~~~~~~~~~~~~ +compilation terminated. +[10/23] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_dev.c.obj +FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_dev.c.obj +ccache C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_dev.c.obj -MF esp-idf\main\CMakeFiles\__idf_main.dir\bt\hid_dev.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_dev.c.obj -c C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hid_dev.c +In file included from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hid_dev.h:10, + from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hid_dev.c:7: +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hidd_le_prf_int.h:12:10: fatal error: esp_gatts_api.h: No such file or directory + 12 | #include "esp_gatts_api.h" + | ^~~~~~~~~~~~~~~~~ +compilation terminated. +[11/23] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_device_le_prf.c.obj +FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_device_le_prf.c.obj +ccache C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_device_le_prf.c.obj -MF esp-idf\main\CMakeFiles\__idf_main.dir\bt\hid_device_le_prf.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_device_le_prf.c.obj -c C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hid_device_le_prf.c +In file included from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hid_device_le_prf.c:7: +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hidd_le_prf_int.h:12:10: fatal error: esp_gatts_api.h: No such file or directory + 12 | #include "esp_gatts_api.h" + | ^~~~~~~~~~~~~~~~~ +compilation terminated. +[12/23] Building ASM object esp-idf/main/CMakeFiles/__idf_main.dir/__/__/sword.pcm.S.obj +[13/23] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/assets/font_alipuhui20.c.obj +[14/23] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj +FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj +ccache C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj -MF esp-idf\main\CMakeFiles\__idf_main.dir\bt\ble_hidd_demo.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj -c C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/ble_hidd_demo.c +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/ble_hidd_demo.c:14:10: fatal error: esp_wifi.h: No such file or directory + 14 | #include "esp_wifi.h" + | ^~~~~~~~~~~~ +compilation terminated. +[15/23] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj +FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj +ccache C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj -MF esp-idf\main\CMakeFiles\__idf_main.dir\esp32_s3_szp.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj -c C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.c +In file included from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.c:2: +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.h:24:10: fatal error: esp_spiffs.h: No such file or directory + 24 | #include "esp_spiffs.h" + | ^~~~~~~~~~~~~~ +compilation terminated. +[16/23] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +ccache C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -MF esp-idf\main\CMakeFiles\__idf_main.dir\main.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/main.c +In file included from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/main.c:2: +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.h:24:10: fatal error: esp_spiffs.h: No such file or directory + 24 | #include "esp_spiffs.h" + | ^~~~~~~~~~~~~~ +compilation terminated. +[17/23] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj +FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj +ccache C:\Espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\"v5.5\" -DLV_CONF_INCLUDE_SIMPLE -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/config -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt -IC:/Espressif/frameworks/esp-idf-v5.5/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/config/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.5/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/power_supply/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.5/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/register -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/xtensa/deprecated_include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.5/components/lwip/port/esp32xx/include/sys -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd/rgb/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port/include -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/src -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/examples -IC:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl/demos -IC:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -mdisable-hardware-atomics -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/29096/Desktop/work/SIM/SIM_S3_1=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.5=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj -MF esp-idf\main\CMakeFiles\__idf_main.dir\app_ui.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj -c C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/app_ui.c +In file included from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/app_ui.h:3, + from C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/app_ui.c:1: +C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.h:24:10: fatal error: esp_spiffs.h: No such file or directory + 24 | #include "esp_spiffs.h" + | ^~~~~~~~~~~~~~ +compilation terminated. +ninja: build stopped: subcommand failed. diff --git a/build/log/idf_py_stdout_output_7624 b/build/log/idf_py_stdout_output_7624 new file mode 100644 index 0000000..e6369d2 --- /dev/null +++ b/build/log/idf_py_stdout_output_7624 @@ -0,0 +1,18 @@ +Command: ninja all +[1/9] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" +Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. +[2/9] No install step for 'bootloader' +[3/9] Completed 'bootloader' +[4/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +[5/9] Linking C static library esp-idf\main\libmain.a +[6/9] Generating esp-idf/esp_system/ld/sections.ld +[7/9] Linking CXX executable SIM_S3_1.elf +[8/9] Generating binary image from built executable +esptool.py v4.9.1 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin +[9/9] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" +SIM_S3_1.bin binary size 0x48970 bytes. Smallest app partition is 0x300000 bytes. 0x2b7690 bytes (91%) free. diff --git a/build/log/idf_py_stdout_output_8732 b/build/log/idf_py_stdout_output_8732 new file mode 100644 index 0000000..54a3fd1 --- /dev/null +++ b/build/log/idf_py_stdout_output_8732 @@ -0,0 +1,64 @@ +Command: ninja all +[0/1] Re-running CMake... +-- Minimal build - OFF +-- ccache will be used for faster recompilation +-- Building ESP-IDF components for target esp32s3 +NOTICE: +Following dependencies have new versions available: +Dependency "espressif/esp_lcd_touch_ft5x06": "1.0.6~1" -> "1.0.7" +Consider running "idf.py update-dependencies" to update your lock file. +NOTICE: Processing 5 dependencies: +NOTICE: [1/5] espressif/esp_lcd_touch (1.1.2) +NOTICE: [2/5] espressif/esp_lcd_touch_ft5x06 (1.0.6~1) +NOTICE: [3/5] espressif/esp_lvgl_port (1.4.0) +NOTICE: [4/5] lvgl/lvgl (8.3.11) +NOTICE: [5/5] idf (5.5.0) +-- Project sdkconfig file C:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig +Loading defaults file C:/Users/29096/Desktop/work/SIM/SIM_S3_1/sdkconfig.defaults... +-- Compiler supported targets: xtensa-esp-elf +-- USING O3 +-- App "SIM_S3_1" version: 1f3f204-dirty +-- Adding linker script C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/memory.ld +-- Adding linker script C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/esp_system/ld/sections.ld.in +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.bt_funcs.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.wdt.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_cca.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_test.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.libc.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld +-- Adding linker script C:/Espressif/frameworks/esp-idf-v5.5/components/soc/esp32s3/ld/esp32s3.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_bitscrambler 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_twai 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 espressif__esp_lcd_touch espressif__esp_lcd_touch_ft5x06 espressif__esp_lvgl_port esptool_py fatfs freertos hal heap http_parser idf_test ieee802154 json log lvgl__lvgl lwip main mbedtls mqtt newlib nvs_flash nvs_sec_provider openthread partition_table perfmon protobuf-c protocomm pthread rt sdmmc signal_generators soc spi_flash spiffs tcp_transport touch_element ulp unity usb vfs wear_levelling wifi_provisioning wpa_supplicant xtensa +-- Component paths: C:/Espressif/frameworks/esp-idf-v5.5/components/app_trace C:/Espressif/frameworks/esp-idf-v5.5/components/app_update C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support C:/Espressif/frameworks/esp-idf-v5.5/components/bt C:/Espressif/frameworks/esp-idf-v5.5/components/cmock C:/Espressif/frameworks/esp-idf-v5.5/components/console C:/Espressif/frameworks/esp-idf-v5.5/components/cxx C:/Espressif/frameworks/esp-idf-v5.5/components/driver C:/Espressif/frameworks/esp-idf-v5.5/components/efuse C:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls C:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc C:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format C:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format C:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex C:/Espressif/frameworks/esp-idf-v5.5/components/esp_common C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag C:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth C:/Espressif/frameworks/esp-idf-v5.5/components/esp_event C:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub C:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid C:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client C:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server C:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota C:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server C:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support C:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd C:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl C:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif C:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif_stack C:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition C:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy C:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm C:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram C:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom C:/Espressif/frameworks/esp-idf-v5.5/components/esp_security C:/Espressif/frameworks/esp-idf-v5.5/components/esp_system C:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer C:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console C:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi C:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py C:/Espressif/frameworks/esp-idf-v5.5/components/fatfs C:/Espressif/frameworks/esp-idf-v5.5/components/freertos C:/Espressif/frameworks/esp-idf-v5.5/components/hal C:/Espressif/frameworks/esp-idf-v5.5/components/heap C:/Espressif/frameworks/esp-idf-v5.5/components/http_parser C:/Espressif/frameworks/esp-idf-v5.5/components/idf_test C:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154 C:/Espressif/frameworks/esp-idf-v5.5/components/json C:/Espressif/frameworks/esp-idf-v5.5/components/log C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl C:/Espressif/frameworks/esp-idf-v5.5/components/lwip C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main C:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls C:/Espressif/frameworks/esp-idf-v5.5/components/mqtt C:/Espressif/frameworks/esp-idf-v5.5/components/newlib C:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash C:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider C:/Espressif/frameworks/esp-idf-v5.5/components/openthread C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table C:/Espressif/frameworks/esp-idf-v5.5/components/perfmon C:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c C:/Espressif/frameworks/esp-idf-v5.5/components/protocomm C:/Espressif/frameworks/esp-idf-v5.5/components/pthread C:/Espressif/frameworks/esp-idf-v5.5/components/rt C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc C:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators C:/Espressif/frameworks/esp-idf-v5.5/components/soc C:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash C:/Espressif/frameworks/esp-idf-v5.5/components/spiffs C:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport C:/Espressif/frameworks/esp-idf-v5.5/components/touch_element C:/Espressif/frameworks/esp-idf-v5.5/components/ulp C:/Espressif/frameworks/esp-idf-v5.5/components/unity C:/Espressif/frameworks/esp-idf-v5.5/components/usb C:/Espressif/frameworks/esp-idf-v5.5/components/vfs C:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling C:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning C:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant C:/Espressif/frameworks/esp-idf-v5.5/components/xtensa +-- Configuring done (15.0s) +-- Generating done (2.1s) +-- Build files have been written to: C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build +[1/19] Building ASM object esp-idf/main/CMakeFiles/__idf_main.dir/__/__/sword.pcm.S.obj +[2/19] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" +Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. +[3/19] No install step for 'bootloader' +[4/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/assets/font_alipuhui20.c.obj +[5/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/esp_hidd_prf_api.c.obj +[6/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_dev.c.obj +[7/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/hid_device_le_prf.c.obj +[8/19] Completed 'bootloader' +[9/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bt/ble_hidd_demo.c.obj +[10/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/esp32_s3_szp.c.obj +[11/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +[12/19] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/app_ui.c.obj +[13/19] Linking C static library esp-idf\main\libmain.a +[14/19] Generating esp-idf/esp_system/ld/sections.ld +[15/19] Building C object CMakeFiles/SIM_S3_1.elf.dir/project_elf_src_esp32s3.c.obj +[16/19] Linking CXX executable SIM_S3_1.elf +[17/19] Generating binary image from built executable +esptool.py v4.9.1 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin +[18/19] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" +SIM_S3_1.bin binary size 0x48840 bytes. Smallest app partition is 0x300000 bytes. 0x2b77c0 bytes (91%) free. diff --git a/build/log/idf_py_stdout_output_9152 b/build/log/idf_py_stdout_output_9152 index 5cc0f43..9bd95ec 100644 --- a/build/log/idf_py_stdout_output_9152 +++ b/build/log/idf_py_stdout_output_9152 @@ -1,18 +1,61 @@ -Command: ninja all -[1/9] Performing build step for 'bootloader' +Command: ninja flash +[1/10] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +[2/10] Performing build step for 'bootloader' [1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\bootloader\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/bootloader/bootloader.bin" Bootloader binary size 0x5260 bytes. 0x2da0 bytes (36%) free. -[2/9] No install step for 'bootloader' -[3/9] Completed 'bootloader' -[4/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/ecg_generator.c.obj -[5/9] Linking C static library esp-idf\main\libmain.a -[6/9] Generating esp-idf/esp_system/ld/sections.ld -[7/9] Linking CXX executable SIM_S3_1.elf -[8/9] Generating binary image from built executable +[3/10] No install step for 'bootloader' +[4/10] Linking C static library esp-idf\main\libmain.a +[5/10] Completed 'bootloader' +[6/10] Generating esp-idf/esp_system/ld/sections.ld +[7/10] Linking CXX executable SIM_S3_1.elf +[8/10] Generating binary image from built executable esptool.py v4.9.1 Creating esp32s3 image... Merged 2 ELF sections Successfully created esp32s3 image. Generated C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin -[9/9] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" -SIM_S3_1.bin binary size 0x47420 bytes. Smallest app partition is 0x300000 bytes. 0x2b8be0 bytes (91%) free. +[9/10] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\29096\Desktop\work\SIM\SIM_S3_1\build\esp-idf\esptool_py && C:\Espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/partition_table/partition-table.bin C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/SIM_S3_1.bin" +SIM_S3_1.bin binary size 0x48a60 bytes. Smallest app partition is 0x300000 bytes. 0x2b75a0 bytes (91%) free. +[9/10] C:\Windows\system32\cmd.exe /C "cd /D C:\Espressif\frameworks\esp-idf-v5.5\components\esptool_py && C:\Espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.5 -D SERIAL_TOOL=C:/Espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build -P C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/run_serial_tool.cmake" +esptool.py --chip esp32s3 -p COM16 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 8MB 0x0 bootloader/bootloader.bin 0x10000 SIM_S3_1.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.9.1 +Serial port COM16 +Connecting.... +Chip is ESP32-S3 (QFN56) (revision v0.2) +Features: WiFi, BLE, Embedded PSRAM 8MB (AP_3v3) +Crystal is 40MHz +MAC: 64:e8:33:4c:69:b4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00005fff... +Flash will be erased from 0x00010000 to 0x00058fff... +Flash will be erased from 0x00008000 to 0x00008fff... +SHA digest in image updated +Compressed 21088 bytes to 13420... +Writing at 0x00000000... (100 %) +Wrote 21088 bytes (13420 compressed) at 0x00000000 in 0.7 seconds (effective 237.6 kbit/s)... +Hash of data verified. +Compressed 297568 bytes to 155294... +Writing at 0x00010000... (10 %) +Writing at 0x0001cd14... (20 %) +Writing at 0x00024513... (30 %) +Writing at 0x0002aeb9... (40 %) +Writing at 0x0003138d... (50 %) +Writing at 0x0003a493... (60 %) +Writing at 0x00041c51... (70 %) +Writing at 0x00048fe2... (80 %) +Writing at 0x0004ed6d... (90 %) +Writing at 0x0005570c... (100 %) +Wrote 297568 bytes (155294 compressed) at 0x00010000 in 3.7 seconds (effective 647.8 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 119... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 277.8 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/project_description.json b/build/project_description.json index d882798..aa68f4a 100644 --- a/build/project_description.json +++ b/build/project_description.json @@ -1,7 +1,7 @@ { "version": "1.2", "project_name": "SIM_S3_1", - "project_version": "1", + "project_version": "1f3f204-dirty", "project_path": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1", "idf_path": "C:/Espressif/frameworks/esp-idf-v5.5", "build_dir": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build", @@ -25,8 +25,8 @@ "COMPONENT_KCONFIGS_PROJBUILD" : "C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table/Kconfig.projbuild" }, "common_component_reqs": [ "cxx", "newlib", "freertos", "esp_hw_support", "heap", "log", "soc", "hal", "esp_rom", "esp_common", "esp_system", "xtensa" ], - "build_components" : [ "app_trace", "app_update", "bootloader", "bootloader_support", "bt", "cmock", "console", "cxx", "driver", "efuse", "esp-tls", "esp_adc", "esp_app_format", "esp_bootloader_format", "esp_coex", "esp_common", "esp_driver_ana_cmpr", "esp_driver_bitscrambler", "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_twai", "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", "espressif__esp_lcd_touch", "espressif__esp_lcd_touch_ft5x06", "espressif__esp_lvgl_port", "esptool_py", "fatfs", "freertos", "hal", "heap", "http_parser", "idf_test", "ieee802154", "json", "log", "lvgl__lvgl", "lwip", "main", "mbedtls", "mqtt", "newlib", "nvs_flash", "nvs_sec_provider", "openthread", "partition_table", "perfmon", "protobuf-c", "protocomm", "pthread", "rt", "sdmmc", "soc", "spi_flash", "spiffs", "tcp_transport", "touch_element", "ulp", "unity", "usb", "vfs", "wear_levelling", "wifi_provisioning", "wpa_supplicant", "xtensa", "" ], - "build_component_paths" : [ "C:/Espressif/frameworks/esp-idf-v5.5/components/app_trace", "C:/Espressif/frameworks/esp-idf-v5.5/components/app_update", "C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader", "C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support", "C:/Espressif/frameworks/esp-idf-v5.5/components/bt", "C:/Espressif/frameworks/esp-idf-v5.5/components/cmock", "C:/Espressif/frameworks/esp-idf-v5.5/components/console", "C:/Espressif/frameworks/esp-idf-v5.5/components/cxx", "C:/Espressif/frameworks/esp-idf-v5.5/components/driver", "C:/Espressif/frameworks/esp-idf-v5.5/components/efuse", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_common", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_event", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif_stack", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_security", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_system", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi", "C:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port", "C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py", "C:/Espressif/frameworks/esp-idf-v5.5/components/fatfs", "C:/Espressif/frameworks/esp-idf-v5.5/components/freertos", "C:/Espressif/frameworks/esp-idf-v5.5/components/hal", "C:/Espressif/frameworks/esp-idf-v5.5/components/heap", "C:/Espressif/frameworks/esp-idf-v5.5/components/http_parser", "C:/Espressif/frameworks/esp-idf-v5.5/components/idf_test", "C:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154", "C:/Espressif/frameworks/esp-idf-v5.5/components/json", "C:/Espressif/frameworks/esp-idf-v5.5/components/log", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl", "C:/Espressif/frameworks/esp-idf-v5.5/components/lwip", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main", "C:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls", "C:/Espressif/frameworks/esp-idf-v5.5/components/mqtt", "C:/Espressif/frameworks/esp-idf-v5.5/components/newlib", "C:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash", "C:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider", "C:/Espressif/frameworks/esp-idf-v5.5/components/openthread", "C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table", "C:/Espressif/frameworks/esp-idf-v5.5/components/perfmon", "C:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c", "C:/Espressif/frameworks/esp-idf-v5.5/components/protocomm", "C:/Espressif/frameworks/esp-idf-v5.5/components/pthread", "C:/Espressif/frameworks/esp-idf-v5.5/components/rt", "C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc", "C:/Espressif/frameworks/esp-idf-v5.5/components/soc", "C:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash", "C:/Espressif/frameworks/esp-idf-v5.5/components/spiffs", "C:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport", "C:/Espressif/frameworks/esp-idf-v5.5/components/touch_element", "C:/Espressif/frameworks/esp-idf-v5.5/components/ulp", "C:/Espressif/frameworks/esp-idf-v5.5/components/unity", "C:/Espressif/frameworks/esp-idf-v5.5/components/usb", "C:/Espressif/frameworks/esp-idf-v5.5/components/vfs", "C:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling", "C:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning", "C:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant", "C:/Espressif/frameworks/esp-idf-v5.5/components/xtensa", "" ], + "build_components" : [ "app_trace", "app_update", "bootloader", "bootloader_support", "bt", "cmock", "console", "cxx", "driver", "efuse", "esp-tls", "esp_adc", "esp_app_format", "esp_bootloader_format", "esp_coex", "esp_common", "esp_driver_ana_cmpr", "esp_driver_bitscrambler", "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_twai", "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", "espressif__esp_lcd_touch", "espressif__esp_lcd_touch_ft5x06", "espressif__esp_lvgl_port", "esptool_py", "fatfs", "freertos", "hal", "heap", "http_parser", "idf_test", "ieee802154", "json", "log", "lvgl__lvgl", "lwip", "main", "mbedtls", "mqtt", "newlib", "nvs_flash", "nvs_sec_provider", "openthread", "partition_table", "perfmon", "protobuf-c", "protocomm", "pthread", "rt", "sdmmc", "signal_generators", "soc", "spi_flash", "spiffs", "tcp_transport", "touch_element", "ulp", "unity", "usb", "vfs", "wear_levelling", "wifi_provisioning", "wpa_supplicant", "xtensa", "" ], + "build_component_paths" : [ "C:/Espressif/frameworks/esp-idf-v5.5/components/app_trace", "C:/Espressif/frameworks/esp-idf-v5.5/components/app_update", "C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader", "C:/Espressif/frameworks/esp-idf-v5.5/components/bootloader_support", "C:/Espressif/frameworks/esp-idf-v5.5/components/bt", "C:/Espressif/frameworks/esp-idf-v5.5/components/cmock", "C:/Espressif/frameworks/esp-idf-v5.5/components/console", "C:/Espressif/frameworks/esp-idf-v5.5/components/cxx", "C:/Espressif/frameworks/esp-idf-v5.5/components/driver", "C:/Espressif/frameworks/esp-idf-v5.5/components/efuse", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp-tls", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_adc", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_app_format", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_bootloader_format", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_coex", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_common", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ana_cmpr", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_bitscrambler", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_cam", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_dac", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gpio", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_gptimer", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2c", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_i2s", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_isp", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_jpeg", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ledc", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_mcpwm", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_parlio", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_pcnt", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_ppa", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_rmt", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdio", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdm", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdmmc", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_sdspi", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_spi", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_touch_sens", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_tsens", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_twai", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_uart", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_driver_usb_serial_jtag", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_eth", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_event", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_gdbstub", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_hid", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_client", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_http_server", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_ota", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_https_server", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_hw_support", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_lcd", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_local_ctrl", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_mm", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_netif_stack", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_partition", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_phy", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_pm", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_psram", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_ringbuf", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_rom", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_security", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_system", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_timer", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_vfs_console", "C:/Espressif/frameworks/esp-idf-v5.5/components/esp_wifi", "C:/Espressif/frameworks/esp-idf-v5.5/components/espcoredump", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lcd_touch_ft5x06", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/espressif__esp_lvgl_port", "C:/Espressif/frameworks/esp-idf-v5.5/components/esptool_py", "C:/Espressif/frameworks/esp-idf-v5.5/components/fatfs", "C:/Espressif/frameworks/esp-idf-v5.5/components/freertos", "C:/Espressif/frameworks/esp-idf-v5.5/components/hal", "C:/Espressif/frameworks/esp-idf-v5.5/components/heap", "C:/Espressif/frameworks/esp-idf-v5.5/components/http_parser", "C:/Espressif/frameworks/esp-idf-v5.5/components/idf_test", "C:/Espressif/frameworks/esp-idf-v5.5/components/ieee802154", "C:/Espressif/frameworks/esp-idf-v5.5/components/json", "C:/Espressif/frameworks/esp-idf-v5.5/components/log", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/managed_components/lvgl__lvgl", "C:/Espressif/frameworks/esp-idf-v5.5/components/lwip", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main", "C:/Espressif/frameworks/esp-idf-v5.5/components/mbedtls", "C:/Espressif/frameworks/esp-idf-v5.5/components/mqtt", "C:/Espressif/frameworks/esp-idf-v5.5/components/newlib", "C:/Espressif/frameworks/esp-idf-v5.5/components/nvs_flash", "C:/Espressif/frameworks/esp-idf-v5.5/components/nvs_sec_provider", "C:/Espressif/frameworks/esp-idf-v5.5/components/openthread", "C:/Espressif/frameworks/esp-idf-v5.5/components/partition_table", "C:/Espressif/frameworks/esp-idf-v5.5/components/perfmon", "C:/Espressif/frameworks/esp-idf-v5.5/components/protobuf-c", "C:/Espressif/frameworks/esp-idf-v5.5/components/protocomm", "C:/Espressif/frameworks/esp-idf-v5.5/components/pthread", "C:/Espressif/frameworks/esp-idf-v5.5/components/rt", "C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators", "C:/Espressif/frameworks/esp-idf-v5.5/components/soc", "C:/Espressif/frameworks/esp-idf-v5.5/components/spi_flash", "C:/Espressif/frameworks/esp-idf-v5.5/components/spiffs", "C:/Espressif/frameworks/esp-idf-v5.5/components/tcp_transport", "C:/Espressif/frameworks/esp-idf-v5.5/components/touch_element", "C:/Espressif/frameworks/esp-idf-v5.5/components/ulp", "C:/Espressif/frameworks/esp-idf-v5.5/components/unity", "C:/Espressif/frameworks/esp-idf-v5.5/components/usb", "C:/Espressif/frameworks/esp-idf-v5.5/components/vfs", "C:/Espressif/frameworks/esp-idf-v5.5/components/wear_levelling", "C:/Espressif/frameworks/esp-idf-v5.5/components/wifi_provisioning", "C:/Espressif/frameworks/esp-idf-v5.5/components/wpa_supplicant", "C:/Espressif/frameworks/esp-idf-v5.5/components/xtensa", "" ], "build_component_info" : { "app_trace": { "alias": "idf::app_trace", @@ -1280,12 +1280,12 @@ "dir": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main", "type": "LIBRARY", "lib": "__idf_main", - "reqs": [], + "reqs": [ "signal_generators", "bt", "spiffs", "esp_wifi", "nvs_flash", "fatfs" ], "priv_reqs": [ "espressif__esp_lcd_touch_ft5x06", "espressif__esp_lvgl_port", "lvgl__lvgl" ], "managed_reqs": [], "managed_priv_reqs": [ "espressif__esp_lcd_touch_ft5x06", "espressif__esp_lvgl_port", "lvgl__lvgl" ], "file": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/main/libmain.a", - "sources": [ "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/main.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/app_ui.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/assets/font_alipuhui20.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/ble_hidd_demo.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/esp_hidd_prf_api.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hid_dev.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hid_device_le_prf.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/ecg_generator.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/sword.pcm.S" ], + "sources": [ "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/esp32_s3_szp.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/main.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/app_ui.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/assets/font_alipuhui20.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/ble_hidd_demo.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/esp_hidd_prf_api.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hid_dev.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main/bt/hid_device_le_prf.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/sword.pcm.S" ], "include_dirs": [ ".", "bt" ] }, "mbedtls": { @@ -1483,6 +1483,21 @@ "sources": [ "C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/sdmmc_cmd.c", "C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/sdmmc_common.c", "C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/sdmmc_init.c", "C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/sdmmc_io.c", "C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/sdmmc_mmc.c", "C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/sdmmc_sd.c", "C:/Espressif/frameworks/esp-idf-v5.5/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c" ], "include_dirs": [ "include" ] }, + "signal_generators": { + "alias": "idf::signal_generators", + "target": "___idf_signal_generators", + "prefix": "idf", + "dir": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators", + "type": "LIBRARY", + "lib": "__idf_signal_generators", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/build/esp-idf/signal_generators/libsignal_generators.a", + "sources": [ "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/src/ecg_generator.c", "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators/src/sine_generator.c" ], + "include_dirs": [ "include" ] + }, "soc": { "alias": "idf::soc", "target": "___idf_soc", @@ -2982,12 +2997,24 @@ "prefix": "idf", "dir": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/main", "lib": "__idf_main", - "reqs": [], + "reqs": [ "signal_generators", "bt", "spiffs", "esp_wifi", "nvs_flash", "fatfs" ], "priv_reqs": [ "espressif__esp_lcd_touch_ft5x06", "espressif__esp_lvgl_port", "lvgl__lvgl" ], "managed_reqs": [], "managed_priv_reqs": [ "espressif__esp_lcd_touch_ft5x06", "espressif__esp_lvgl_port", "lvgl__lvgl" ], "include_dirs": [ ".", "bt" ] }, + "signal_generators": { + "alias": "idf::signal_generators", + "target": "___idf_signal_generators", + "prefix": "idf", + "dir": "C:/Users/29096/Desktop/work/SIM/SIM_S3_1/components/signal_generators", + "lib": "__idf_signal_generators", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, "espressif__esp_lcd_touch": { "alias": "idf::espressif__esp_lcd_touch", "target": "___idf_espressif__esp_lcd_touch", diff --git a/components/signal_generators/CMakeLists.txt b/components/signal_generators/CMakeLists.txt new file mode 100644 index 0000000..2d9027d --- /dev/null +++ b/components/signal_generators/CMakeLists.txt @@ -0,0 +1,7 @@ +idf_component_register( + SRCS + "src/ecg_generator.c" + "src/sine_generator.c" + INCLUDE_DIRS + "include" +) diff --git a/components/signal_generators/README.md b/components/signal_generators/README.md new file mode 100644 index 0000000..7b86bf1 --- /dev/null +++ b/components/signal_generators/README.md @@ -0,0 +1,60 @@ +# Signal Generators Library + +这是一个ESP32信号生成器库,包含ECG(心电图)生成器和正弦波生成器。 + +## 功能特性 + +### ECG生成器 (ecg_generator) +- 生成逼真的心电图信号 +- 可调节心率和幅度 +- 包含P波、QRS波群、T波 +- 支持实时参数调整 + +### 正弦波生成器 (sine_generator) +- 高频正弦波生成 +- 预计算查找表优化 +- 支持50kHz采样率 +- 内存高效设计 + +## 使用方法 + +### ECG生成器 +```c +#include "ecg_generator.h" + +ecg_generator_t ecg_gen; +ecg_generator_init(&ecg_gen, 250.0f); // 250Hz采样率 +ecg_generator_set_heart_rate(&ecg_gen, 75.0f); // 75 BPM +ecg_generator_set_amplitude(&ecg_gen, 5.0f); // 5mV +ecg_generator_start(&ecg_gen); + +// 在定时器回调中 +float sample = ecg_generator_get_next_sample(&ecg_gen); +``` + +### 正弦波生成器 +```c +#include "sine_generator.h" + +sine_generator_t sine_gen; +sine_generator_init(&sine_gen, 50000.0f); // 50kHz采样率 +sine_generator_set_frequency(&sine_gen, 200.0f); // 200Hz +sine_generator_set_amplitude(&sine_gen, 5.0f); // 5mV +sine_generator_start(&sine_gen); + +// 在定时器回调中 +float sample = sine_generator_get_next_sample(&sine_gen); +``` + +## 性能优化 + +- ECG生成器:实时计算,适合低频应用 +- 正弦波生成器:预计算查找表,适合高频应用 +- 内存管理:自动分配和释放查找表 +- 中断友好:最小化中断执行时间 + +## 依赖项 + +- ESP-IDF +- math库 +- esp_log库 diff --git a/main/ecg_generator.h b/components/signal_generators/include/ecg_generator.h similarity index 94% rename from main/ecg_generator.h rename to components/signal_generators/include/ecg_generator.h index 1fbed91..81028c7 100644 --- a/main/ecg_generator.h +++ b/components/signal_generators/include/ecg_generator.h @@ -40,6 +40,7 @@ void ecg_generator_start(ecg_generator_t *generator); void ecg_generator_stop(ecg_generator_t *generator); void ecg_generator_reset(ecg_generator_t *generator); float ecg_generator_get_next_sample(ecg_generator_t *generator); +void ecg_param_set(ecg_generator_t *generator, float amplitude_mv, float heart_rate); #ifdef __cplusplus } diff --git a/components/signal_generators/include/sine_generator.h b/components/signal_generators/include/sine_generator.h new file mode 100644 index 0000000..f825d69 --- /dev/null +++ b/components/signal_generators/include/sine_generator.h @@ -0,0 +1,46 @@ +#ifndef SINE_GENERATOR_H +#define SINE_GENERATOR_H + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +// 正弦波生成器结构体 +typedef struct { + // 用户可调参数 + float frequency; // 正弦波频率 (Hz) + float amplitude; // 幅值 (V) + + // 内部状态 + uint32_t sample_count; // 样本计数器 + float sample_rate; // 采样率 (Hz) + bool is_running; // 是否正在运行 + + // 预计算正弦波查找表 + float* sine_lookup_table; // 正弦波查找表 + uint32_t table_size; // 查找表大小 + uint32_t table_index; // 当前索引 +} sine_generator_t; + +// 函数声明 +void sine_generator_init(sine_generator_t *generator, float sample_rate); +void sine_generator_set_frequency(sine_generator_t *generator, float frequency); +void sine_generator_set_amplitude(sine_generator_t *generator, float amplitude_mv); +void sine_generator_start(sine_generator_t *generator); +void sine_generator_stop(sine_generator_t *generator); +void sine_generator_reset(sine_generator_t *generator); +float sine_generator_get_next_sample(sine_generator_t *generator); +void sine_generator_cleanup(sine_generator_t *generator); + +// 查找表管理函数 +void sine_generator_generate_lookup_table(sine_generator_t *generator); +void sine_generator_free_lookup_table(sine_generator_t *generator); + +#ifdef __cplusplus +} +#endif + +#endif // SINE_GENERATOR_H diff --git a/main/ecg_generator.c b/components/signal_generators/src/ecg_generator.c similarity index 95% rename from main/ecg_generator.c rename to components/signal_generators/src/ecg_generator.c index bf2f7ce..bf2ab89 100644 --- a/main/ecg_generator.c +++ b/components/signal_generators/src/ecg_generator.c @@ -11,7 +11,7 @@ void ecg_generator_init(ecg_generator_t *generator, float sample_rate) { // 设置默认参数 generator->heart_rate = 75.0f; // 心率75次/分 - generator->amplitude = 1.0f; // 幅值1.0V + generator->amplitude = 1.0f; // 幅值1.0mV generator->sample_rate = sample_rate; generator->is_running = false; @@ -28,6 +28,12 @@ void ecg_generator_init(ecg_generator_t *generator, float sample_rate) { generator->t_width = 0.05f; // T波宽度 } +void ecg_param_set(ecg_generator_t *generator, float amplitude_mv, float heart_rate) { + if (generator == NULL) return; + ecg_generator_set_heart_rate(generator, heart_rate); + ecg_generator_set_amplitude(generator, amplitude_mv); +} + // 设置心率 void ecg_generator_set_heart_rate(ecg_generator_t *generator, float heart_rate) { if (generator == NULL) return; diff --git a/components/signal_generators/src/sine_generator.c b/components/signal_generators/src/sine_generator.c new file mode 100644 index 0000000..c4a23a4 --- /dev/null +++ b/components/signal_generators/src/sine_generator.c @@ -0,0 +1,199 @@ +#include "sine_generator.h" +#include +#include +#include +#include "esp_log.h" + +// 初始化正弦波生成器 +void sine_generator_init(sine_generator_t *generator, float sample_rate) { + if (generator == NULL) return; + + memset(generator, 0, sizeof(sine_generator_t)); + + // 设置默认参数 + generator->frequency = 200.0f; // 默认200Hz正弦波 + generator->amplitude = 1.0f; // 幅值1.0V + generator->sample_rate = sample_rate; + generator->is_running = false; + + // 查找表参数 + generator->sine_lookup_table = NULL; + generator->table_size = 0; + generator->table_index = 0; +} + +// 设置正弦波频率 +void sine_generator_set_frequency(sine_generator_t *generator, float frequency) { + if (generator == NULL) return; + + // 限制频率范围 + if (frequency < 0.1f) frequency = 0.1f; + if (frequency > 10000.0f) frequency = 10000.0f; + + generator->frequency = frequency; + + // 如果已经运行,重新生成查找表 + if (generator->is_running) { + sine_generator_generate_lookup_table(generator); + } + + ESP_LOGI("SINE_GEN", "Sine wave frequency set to: %.1f Hz", frequency); +} + +// 设置幅值(直接输入mV值,内部自动转换为DAC输出值) +void sine_generator_set_amplitude(sine_generator_t *generator, float amplitude_mv) { + if (generator == NULL) return; + + // 硬件衰减系数:约38倍 (根据实际测量:0.132V → 5mV) + // 对应关系:amplitude(V) × 38 ≈ 示波器显示值(mV) + const float attenuation_factor = 38.0f; + + // 将mV除以衰减系数得到DAC输出值 + float dac_amplitude = amplitude_mv / attenuation_factor; + + generator->amplitude = dac_amplitude; + + // 如果已经运行,重新生成查找表 + if (generator->is_running) { + sine_generator_generate_lookup_table(generator); + } + + ESP_LOGI("SINE_GEN", "Sine wave amplitude set to: %.1f mV", amplitude_mv); +} + +// 开始生成 +void sine_generator_start(sine_generator_t *generator) { + if (generator == NULL) return; + + generator->is_running = true; + generator->sample_count = 0; + + // 生成查找表 + sine_generator_generate_lookup_table(generator); + + ESP_LOGI("SINE_GEN", "Sine generator started: %.1f Hz, %.1f mV", + generator->frequency, generator->amplitude * 38.0f); +} + +// 停止生成 +void sine_generator_stop(sine_generator_t *generator) { + if (generator == NULL) return; + + generator->is_running = false; + ESP_LOGI("SINE_GEN", "Sine generator stopped"); +} + +// 重置生成器 +void sine_generator_reset(sine_generator_t *generator) { + if (generator == NULL) return; + + generator->sample_count = 0; + generator->table_index = 0; +} + +// 获取下一个样本 +float sine_generator_get_next_sample(sine_generator_t *generator) { + if (generator == NULL || !generator->is_running) { + return 0.0f; + } + + // 使用预计算的查找表,超高速访问 + if (generator->sine_lookup_table != NULL && generator->table_size > 0) { + // 从查找表获取预计算的值 + float sine_value = generator->sine_lookup_table[generator->table_index]; + + // 更新索引,循环使用查找表 + generator->table_index = (generator->table_index + 1) % generator->table_size; + generator->sample_count++; + + return sine_value; + } else { + // 如果查找表未初始化,使用实时计算(备用方案) + float t = (float)generator->sample_count / generator->sample_rate; + float sine_value = generator->amplitude * sinf(2.0f * M_PI * generator->frequency * t); + + // 添加偏置电压 + float offset = generator->amplitude; + sine_value = sine_value + offset; + + // 限制在DAC有效范围内 + if (sine_value < 0.0f) sine_value = 0.0f; + if (sine_value > 2.048f) sine_value = 2.048f; + + generator->sample_count++; + return sine_value; + } +} + +// 生成正弦波查找表 +void sine_generator_generate_lookup_table(sine_generator_t *generator) { + if (generator == NULL) return; + + // 释放旧的查找表 + sine_generator_free_lookup_table(generator); + + // 计算查找表大小:一个完整周期的样本数 + // 表大小 = 采样率 / 正弦波频率 + generator->table_size = (uint32_t)(generator->sample_rate / generator->frequency); + + // 确保表大小至少为1 + if (generator->table_size < 1) { + generator->table_size = 1; + } + + // 分配内存 + generator->sine_lookup_table = (float*)malloc(generator->table_size * sizeof(float)); + if (generator->sine_lookup_table == NULL) { + ESP_LOGE("SINE_GEN", "Failed to allocate memory for sine lookup table"); + generator->table_size = 0; + return; + } + + // 预计算正弦波值 + for (uint32_t i = 0; i < generator->table_size; i++) { + // 计算时间点 + float t = (float)i / generator->sample_rate; + + // 计算正弦波值 + float sine_value = generator->amplitude * sinf(2.0f * M_PI * generator->frequency * t); + + // 添加偏置电压 + float offset = generator->amplitude; + sine_value = sine_value + offset; + + // 限制在DAC有效范围内 + if (sine_value < 0.0f) sine_value = 0.0f; + if (sine_value > 2.048f) sine_value = 2.048f; + + generator->sine_lookup_table[i] = sine_value; + } + + // 重置索引 + generator->table_index = 0; + + ESP_LOGI("SINE_GEN", "Generated sine lookup table: %u points, %.1f Hz", + generator->table_size, generator->frequency); +} + +// 释放正弦波查找表 +void sine_generator_free_lookup_table(sine_generator_t *generator) { + if (generator == NULL) return; + + if (generator->sine_lookup_table != NULL) { + free(generator->sine_lookup_table); + generator->sine_lookup_table = NULL; + } + + generator->table_size = 0; + generator->table_index = 0; +} + +// 清理生成器(释放所有资源) +void sine_generator_cleanup(sine_generator_t *generator) { + if (generator == NULL) return; + + generator->is_running = false; + sine_generator_free_lookup_table(generator); + + ESP_LOGI("SINE_GEN", "Sine generator cleaned up"); +} diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index 0d3f2d8..60e48ba 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt @@ -1,9 +1,9 @@ idf_component_register(SRCS "esp32_s3_szp.c" "main.c" "app_ui.c" - SRCS "assets/font_alipuhui20.c" - SRCS "bt/ble_hidd_demo.c" "bt/esp_hidd_prf_api.c" "bt/hid_dev.c" "bt/hid_device_le_prf.c" - SRCS "ecg_generator.c" - EMBED_FILES "sword.pcm" - INCLUDE_DIRS "." - INCLUDE_DIRS "bt") + SRCS "assets/font_alipuhui20.c" + SRCS "bt/ble_hidd_demo.c" "bt/esp_hidd_prf_api.c" "bt/hid_dev.c" "bt/hid_device_le_prf.c" + EMBED_FILES "sword.pcm" + INCLUDE_DIRS "." + INCLUDE_DIRS "bt" + REQUIRES signal_generators bt spiffs esp_wifi nvs_flash fatfs) target_compile_options(${COMPONENT_LIB} PRIVATE -Wno-unused-const-variable) diff --git a/main/main.c b/main/main.c index c743046..d94c642 100644 --- a/main/main.c +++ b/main/main.c @@ -4,92 +4,153 @@ #include #include #include "ecg_generator.h" +#include "sine_generator.h" #include "esp_timer.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" - +#include "driver/gpio.h" EventGroupHandle_t my_event_group; +// 按键定义 +#define BUTTON_PIN GPIO_NUM_0 // 使用GPIO0作为按键输入 +#define BUTTON_DEBOUNCE_MS 200 // 防抖时间 + static const char *TAG = "MAIN"; -// ECG定时器相关 +// 信号生成器相关 static ecg_generator_t g_ecg_gen; -static esp_timer_handle_t ecg_timer = NULL; -static uint32_t ecg_sample_count = 0; -static uint32_t ecg_last_log_time = 0; +static sine_generator_t g_sine_gen; +static esp_timer_handle_t signal_timer = NULL; +static uint32_t signal_sample_count = 0; +static uint32_t signal_last_log_time = 0; +static bool use_sine_wave = true; // true=正弦波, false=ECG -// ECG定时器回调函数 -static void ecg_timer_callback(void* arg) { - // 生成ECG样本 - float ecg_voltage = ecg_generator_get_next_sample(&g_ecg_gen); +// 信号生成器定时器回调函数 +static void signal_timer_callback(void* arg) { + float signal_voltage = 0.0f; + + if (use_sine_wave) { + // 生成正弦波样本 + signal_voltage = sine_generator_get_next_sample(&g_sine_gen); + } else { + // 生成ECG样本 + signal_voltage = ecg_generator_get_next_sample(&g_ecg_gen); + } // 输出到DAC通道2 - set_channel_voltage(2, ecg_voltage); + set_channel_voltage(2, signal_voltage); - ecg_sample_count++; + signal_sample_count++; - // 每秒输出一次统计信息 - uint32_t now = esp_timer_get_time() / 1000; // 转换为毫秒 - if (now - ecg_last_log_time >= 1000) { - ESP_LOGI(TAG, "ECG Timer: %u samples in 1s (%.1f Hz)", - ecg_sample_count, (float)ecg_sample_count); - ecg_sample_count = 0; - ecg_last_log_time = now; + // 减少日志输出频率,避免影响高频中断性能 + // 每20000个样本输出一次统计信息(约1秒) + if (signal_sample_count >= 20000) { + ESP_LOGI(TAG, "Generated %u samples at 20kHz (%s)", + signal_sample_count, use_sine_wave ? "Sine Wave" : "ECG"); + signal_sample_count = 0; + signal_last_log_time = esp_timer_get_time() / 1000; } } // 函数声明 void displayMemoryUsage(void); -void test_ecg_generation(void); +void test_signal_generation(void); +void switch_to_ecg_mode(void); +void switch_to_sine_mode(void); -// ECG测试函数 -void test_ecg_generation(void) { - ESP_LOGI(TAG, "=== ECG Generation Test ==="); +// 信号生成器测试函数 +void test_signal_generation(void) { + ESP_LOGI(TAG, "=== Signal Generation Test ==="); // 初始化ECG生成器 - ecg_generator_init(&g_ecg_gen, 250.0f); // 250Hz采样率 + ecg_generator_init(&g_ecg_gen, 20000.0f); // 20kHz生成率 + ecg_param_set(&g_ecg_gen, 5.0f, 75.0f); - // 设置ECG参数 - ecg_generator_set_heart_rate(&g_ecg_gen, 75.0f); // 75次/分 - ecg_generator_set_amplitude(&g_ecg_gen, 5.0f); // 直接设置5mV幅值,内部自动转换 - - // 幅值设置说明: - // ecg_generator_set_amplitude() 现在直接接受mV值 - // 内部自动处理硬件衰减系数转换 - // 例如:set_amplitude(5.0f) → 示波器显示5mV - - ESP_LOGI(TAG, "ECG Parameters:"); - ESP_LOGI(TAG, " Heart Rate: %.1f BPM", g_ecg_gen.heart_rate); - ESP_LOGI(TAG, " Amplitude: %.1f V", g_ecg_gen.amplitude); - ESP_LOGI(TAG, " Sample Rate: %.1f Hz", g_ecg_gen.sample_rate); + // 初始化正弦波生成器 + sine_generator_init(&g_sine_gen, 20000.0f); // 20kHz生成率 + sine_generator_set_frequency(&g_sine_gen, 10.0f); // 100Hz正弦波 + sine_generator_set_amplitude(&g_sine_gen, 5.0f); // 5mV // 创建定时器配置 const esp_timer_create_args_t timer_args = { - .callback = &ecg_timer_callback, - .name = "ecg_timer" + .callback = &signal_timer_callback, + .name = "signal_timer" }; // 创建定时器 - esp_err_t ret = esp_timer_create(&timer_args, &ecg_timer); + esp_err_t ret = esp_timer_create(&timer_args, &signal_timer); if (ret != ESP_OK) { - ESP_LOGE(TAG, "Failed to create ECG timer: %s", esp_err_to_name(ret)); + ESP_LOGE(TAG, "Failed to create signal timer: %s", esp_err_to_name(ret)); return; } - // 启动ECG生成器 - ecg_generator_start(&g_ecg_gen); + // 启动信号生成器 + if (use_sine_wave) { + sine_generator_start(&g_sine_gen); + ESP_LOGI(TAG, "Started sine wave generator: 100Hz, 5mV"); + } else { + ecg_generator_start(&g_ecg_gen); + ESP_LOGI(TAG, "Started ECG generator: 75 BPM, 5mV"); + } - // 启动定时器 (4ms = 250Hz) - ret = esp_timer_start_periodic(ecg_timer, 4000); // 4000微秒 = 4ms + // 启动定时器 (50us = 20kHz) + ret = esp_timer_start_periodic(signal_timer, 50); // 50微秒 = 20kHz if (ret != ESP_OK) { - ESP_LOGE(TAG, "Failed to start ECG timer: %s", esp_err_to_name(ret)); - esp_timer_delete(ecg_timer); + ESP_LOGE(TAG, "Failed to start signal timer: %s", esp_err_to_name(ret)); + esp_timer_delete(signal_timer); return; } - ESP_LOGI(TAG, "ECG timer started at 250Hz (4ms period)"); - ESP_LOGI(TAG, "ECG generation is now running..."); + ESP_LOGI(TAG, "Signal timer started at 20kHz (50us period)"); +} + +// 切换到ECG模式 +void switch_to_ecg_mode(void) { + if (use_sine_wave) { + sine_generator_stop(&g_sine_gen); + ecg_generator_start(&g_ecg_gen); + use_sine_wave = false; + ESP_LOGI(TAG, "Switched to ECG mode"); + } +} + +// 切换到正弦波模式 +void switch_to_sine_mode(void) { + if (!use_sine_wave) { + ecg_generator_stop(&g_ecg_gen); + sine_generator_start(&g_sine_gen); + use_sine_wave = true; + ESP_LOGI(TAG, "Switched to sine wave mode"); + } +} + +// 按键初始化 +void button_init(void) { + gpio_config_t io_conf = {}; + io_conf.intr_type = GPIO_INTR_DISABLE; + io_conf.mode = GPIO_MODE_INPUT; + io_conf.pin_bit_mask = (1ULL << BUTTON_PIN); + io_conf.pull_down_en = 0; + io_conf.pull_up_en = 1; // 启用上拉电阻 + gpio_config(&io_conf); + ESP_LOGI(TAG, "Button initialized on GPIO %d", BUTTON_PIN); +} + +// 检测按键按下 +bool button_pressed(void) { + static uint32_t last_press_time = 0; + uint32_t current_time = esp_timer_get_time() / 1000; // 转换为毫秒 + + // 检测按键按下(低电平) + if (gpio_get_level(BUTTON_PIN) == 0) { + // 防抖处理 + if (current_time - last_press_time > BUTTON_DEBOUNCE_MS) { + last_press_time = current_time; + return true; + } + } + return false; } // 打印内存使用情况 @@ -123,18 +184,28 @@ void app_main(void) bsp_i2c_init(); // I2C初始化 LED_init(); // LED初始化 init_ad5328(); // DAC初始化 + button_init(); // 按键初始化 my_event_group = xEventGroupCreate(); ESP_LOGI(TAG, "Hardware initialization completed."); - // 启动ECG生成 - test_ecg_generation(); + // 启动信号生成 + test_signal_generation(); // LED状态指示 ESP_LOGI(TAG, "Starting LED status indicator..."); int led_count = 0; while (true) { + // 检测按键按下 + if (button_pressed()) { + if (use_sine_wave) { + switch_to_ecg_mode(); + } else { + switch_to_sine_mode(); + } + } + // LED闪烁指示系统运行 gpio_set_level(LED_PIN, 1); // LED亮 vTaskDelay(pdMS_TO_TICKS(1000)); diff --git a/signal_generators/CMakeLists.txt b/signal_generators/CMakeLists.txt new file mode 100644 index 0000000..f994ed3 --- /dev/null +++ b/signal_generators/CMakeLists.txt @@ -0,0 +1,10 @@ +idf_component_register( + SRCS + "src/ecg_generator.c" + "src/sine_generator.c" + INCLUDE_DIRS + "include" + REQUIRES + esp_log + math +) diff --git a/signal_generators/README.md b/signal_generators/README.md new file mode 100644 index 0000000..7b86bf1 --- /dev/null +++ b/signal_generators/README.md @@ -0,0 +1,60 @@ +# Signal Generators Library + +这是一个ESP32信号生成器库,包含ECG(心电图)生成器和正弦波生成器。 + +## 功能特性 + +### ECG生成器 (ecg_generator) +- 生成逼真的心电图信号 +- 可调节心率和幅度 +- 包含P波、QRS波群、T波 +- 支持实时参数调整 + +### 正弦波生成器 (sine_generator) +- 高频正弦波生成 +- 预计算查找表优化 +- 支持50kHz采样率 +- 内存高效设计 + +## 使用方法 + +### ECG生成器 +```c +#include "ecg_generator.h" + +ecg_generator_t ecg_gen; +ecg_generator_init(&ecg_gen, 250.0f); // 250Hz采样率 +ecg_generator_set_heart_rate(&ecg_gen, 75.0f); // 75 BPM +ecg_generator_set_amplitude(&ecg_gen, 5.0f); // 5mV +ecg_generator_start(&ecg_gen); + +// 在定时器回调中 +float sample = ecg_generator_get_next_sample(&ecg_gen); +``` + +### 正弦波生成器 +```c +#include "sine_generator.h" + +sine_generator_t sine_gen; +sine_generator_init(&sine_gen, 50000.0f); // 50kHz采样率 +sine_generator_set_frequency(&sine_gen, 200.0f); // 200Hz +sine_generator_set_amplitude(&sine_gen, 5.0f); // 5mV +sine_generator_start(&sine_gen); + +// 在定时器回调中 +float sample = sine_generator_get_next_sample(&sine_gen); +``` + +## 性能优化 + +- ECG生成器:实时计算,适合低频应用 +- 正弦波生成器:预计算查找表,适合高频应用 +- 内存管理:自动分配和释放查找表 +- 中断友好:最小化中断执行时间 + +## 依赖项 + +- ESP-IDF +- math库 +- esp_log库 diff --git a/signal_generators/idf_component.yml b/signal_generators/idf_component.yml new file mode 100644 index 0000000..a293c37 --- /dev/null +++ b/signal_generators/idf_component.yml @@ -0,0 +1,4 @@ +## IDF Component Manager Manifest File +dependencies: + esp_log: "*" + math: "*" diff --git a/signal_generators/include/ecg_generator.h b/signal_generators/include/ecg_generator.h new file mode 100644 index 0000000..c091731 --- /dev/null +++ b/signal_generators/include/ecg_generator.h @@ -0,0 +1,57 @@ +#ifndef ECG_GENERATOR_H +#define ECG_GENERATOR_H + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +// ECG生成器结构体 +typedef struct { + // 用户可调参数 + float heart_rate; // 心率 (次/分) + float amplitude; // 幅值 (V) + + // 内部状态 + uint32_t sample_count; // 样本计数器 + float sample_rate; // 采样率 (Hz) + bool is_running; // 是否正在运行 + + // 固定波形参数 (保持正常ECG比例) + float p_amp_ratio; // P波幅度比例 + float q_amp_ratio; // Q波幅度比例 + float r_amp_ratio; // R波幅度比例 + float s_amp_ratio; // S波幅度比例 + float t_amp_ratio; // T波幅度比例 + + // 固定时间参数 (保持正常ECG时序) + float p_width; // P波宽度 + float qrs_width; // QRS波群宽度 + float t_width; // T波宽度 + + // 预计算ECG查找表 + float* ecg_lookup_table; // ECG查找表 + uint32_t table_size; // 查找表大小 + uint32_t table_index; // 当前索引 +} ecg_generator_t; + +// 函数声明 +void ecg_generator_init(ecg_generator_t *generator, float sample_rate); +void ecg_generator_set_heart_rate(ecg_generator_t *generator, float heart_rate); +void ecg_generator_set_amplitude(ecg_generator_t *generator, float amplitude_mv); // 直接输入mV值,内部自动转换 +void ecg_generator_start(ecg_generator_t *generator); +void ecg_generator_stop(ecg_generator_t *generator); +void ecg_generator_reset(ecg_generator_t *generator); +float ecg_generator_get_next_sample(ecg_generator_t *generator); +void ecg_generator_generate_lookup_table(ecg_generator_t *generator); +void ecg_generator_free_lookup_table(ecg_generator_t *generator); +void ecg_generator_cleanup(ecg_generator_t *generator); +void ecg_param_set(ecg_generator_t *generator, float amplitude_mv, float heart_rate); + +#ifdef __cplusplus +} +#endif + +#endif // ECG_GENERATOR_H diff --git a/signal_generators/include/sine_generator.h b/signal_generators/include/sine_generator.h new file mode 100644 index 0000000..f825d69 --- /dev/null +++ b/signal_generators/include/sine_generator.h @@ -0,0 +1,46 @@ +#ifndef SINE_GENERATOR_H +#define SINE_GENERATOR_H + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +// 正弦波生成器结构体 +typedef struct { + // 用户可调参数 + float frequency; // 正弦波频率 (Hz) + float amplitude; // 幅值 (V) + + // 内部状态 + uint32_t sample_count; // 样本计数器 + float sample_rate; // 采样率 (Hz) + bool is_running; // 是否正在运行 + + // 预计算正弦波查找表 + float* sine_lookup_table; // 正弦波查找表 + uint32_t table_size; // 查找表大小 + uint32_t table_index; // 当前索引 +} sine_generator_t; + +// 函数声明 +void sine_generator_init(sine_generator_t *generator, float sample_rate); +void sine_generator_set_frequency(sine_generator_t *generator, float frequency); +void sine_generator_set_amplitude(sine_generator_t *generator, float amplitude_mv); +void sine_generator_start(sine_generator_t *generator); +void sine_generator_stop(sine_generator_t *generator); +void sine_generator_reset(sine_generator_t *generator); +float sine_generator_get_next_sample(sine_generator_t *generator); +void sine_generator_cleanup(sine_generator_t *generator); + +// 查找表管理函数 +void sine_generator_generate_lookup_table(sine_generator_t *generator); +void sine_generator_free_lookup_table(sine_generator_t *generator); + +#ifdef __cplusplus +} +#endif + +#endif // SINE_GENERATOR_H diff --git a/signal_generators/src/ecg_generator.c b/signal_generators/src/ecg_generator.c new file mode 100644 index 0000000..d81db33 --- /dev/null +++ b/signal_generators/src/ecg_generator.c @@ -0,0 +1,274 @@ +#include "ecg_generator.h" +#include +#include +#include "esp_log.h" + +// 初始化ECG生成器 +void ecg_generator_init(ecg_generator_t *generator, float sample_rate) { + if (generator == NULL) return; + + memset(generator, 0, sizeof(ecg_generator_t)); + + // 设置默认参数 + generator->heart_rate = 75.0f; // 心率75次/分 + generator->amplitude = 1.0f; // 幅值1.0mV + generator->sample_rate = sample_rate; + generator->is_running = false; + + // 固定波形参数 (保持正常ECG比例) + generator->p_amp_ratio = 0.2f; // P波幅度比例 + generator->q_amp_ratio = 0.3f; // Q波幅度比例 + generator->r_amp_ratio = 1.0f; // R波幅度比例 + generator->s_amp_ratio = 0.4f; // S波幅度比例 + generator->t_amp_ratio = 0.4f; // T波幅度比例 + + // 固定时间参数 (保持正常ECG时序) + generator->p_width = 0.03f; // P波宽度 + generator->qrs_width = 0.01f; // QRS波群宽度 + generator->t_width = 0.05f; // T波宽度 + + // 初始化查找表 + generator->ecg_lookup_table = NULL; + generator->table_size = 0; + generator->table_index = 0; + + // 生成初始查找表 + ecg_generator_generate_lookup_table(generator); +} + +void ecg_param_set(ecg_generator_t *generator, float amplitude_mv, float heart_rate) { + if (generator == NULL) return; + ecg_generator_set_heart_rate(generator, heart_rate); + ecg_generator_set_amplitude(generator, amplitude_mv); +} + +// 设置心率 +void ecg_generator_set_heart_rate(ecg_generator_t *generator, float heart_rate) { + if (generator == NULL) return; + + // 限制心率范围 + if (heart_rate < 30.0f) heart_rate = 30.0f; + if (heart_rate > 200.0f) heart_rate = 200.0f; + + generator->heart_rate = heart_rate; + + // 心率改变时重新生成查找表 + ecg_generator_generate_lookup_table(generator); +} + +// 设置幅值(直接输入mV值,内部自动转换为DAC输出值) +void ecg_generator_set_amplitude(ecg_generator_t *generator, float amplitude_mv) { + if (generator == NULL) return; + + // 硬件衰减系数:约38倍 (根据实际测量:0.132V → 5mV) + // 对应关系:amplitude(V) × 38 ≈ 示波器显示值(mV) + const float attenuation_factor = 38.0f; + + // 将mV除以衰减系数得到DAC输出值 + float dac_amplitude = amplitude_mv / attenuation_factor; + + generator->amplitude = dac_amplitude; + + // 幅值改变时重新生成查找表 + ecg_generator_generate_lookup_table(generator); +} + +// 开始生成 +void ecg_generator_start(ecg_generator_t *generator) { + if (generator == NULL) return; + + generator->is_running = true; + generator->sample_count = 0; + generator->table_index = 0; // 重置查找表索引 +} + +// 停止生成 +void ecg_generator_stop(ecg_generator_t *generator) { + if (generator == NULL) return; + + generator->is_running = false; +} + +// 重置生成器 +void ecg_generator_reset(ecg_generator_t *generator) { + if (generator == NULL) return; + + generator->sample_count = 0; + generator->table_index = 0; // 重置查找表索引 +} + +// 获取下一个样本 - 使用查找表优化 +float ecg_generator_get_next_sample(ecg_generator_t *generator) { + if (generator == NULL || !generator->is_running) { + return 0.0f; + } + + if (generator->ecg_lookup_table != NULL && generator->table_size > 0) { + // 使用查找表 + float ecg_value = generator->ecg_lookup_table[generator->table_index]; + generator->table_index = (generator->table_index + 1) % generator->table_size; + generator->sample_count++; + return ecg_value; + } else { + // 查找表未准备好,使用实时计算(备用方案) + return ecg_generator_calculate_sample_realtime(generator); + } +} + +// 实时计算ECG样本(备用方案) +float ecg_generator_calculate_sample_realtime(ecg_generator_t *generator) { + // 计算RR间期 (秒) + float rr_interval = 60.0f / generator->heart_rate; + + // 计算当前时间 + float t = (float)generator->sample_count / generator->sample_rate; + + // 周期内时间 + float t_mod = fmodf(t, rr_interval); + + // 归一化时间到0-1范围(相对于RR间期的比例) + float t_norm = t_mod / rr_interval; + + // 计算各波幅度 + float p_amp = generator->amplitude * generator->p_amp_ratio; + float q_amp = generator->amplitude * generator->q_amp_ratio; + float r_amp = generator->amplitude * generator->r_amp_ratio; + float s_amp = generator->amplitude * generator->s_amp_ratio; + float t_amp = generator->amplitude * generator->t_amp_ratio; + + // 时间参数(相对于RR间期的比例) - 根据Python代码修正 + float p_time_ratio = 0.125f; // P波位置:12.5% + float q_time_ratio = 0.3125f; // Q波位置:31.25% + float r_time_ratio = 0.3375f; // R波位置:33.75% + float s_time_ratio = 0.3625f; // S波位置:36.25% + float t_time_ratio = 0.625f; // T波位置:62.5% + + // 宽度参数(相对于RR间期的比例) - 修正QRS宽度使其充分重叠 + float p_width_ratio = 0.0375f; // P波宽度:0.03/0.8 = 3.75% + float qrs_width_ratio = 0.0125f; // QRS宽度:增加到2.5%,确保Q、R、S充分重叠 + float t_width_ratio = 0.0625f; // T波宽度:0.05/0.8 = 6.25% + + // P波 - 修正后的计算 + float p = p_amp * expf(-(t_norm - p_time_ratio) * (t_norm - p_time_ratio) / (2.0f * p_width_ratio * p_width_ratio)); + + // QRS波群 - 修正后的计算 + float q = -q_amp * expf(-(t_norm - q_time_ratio) * (t_norm - q_time_ratio) / (2.0f * qrs_width_ratio * qrs_width_ratio)); + float r = r_amp * expf(-(t_norm - r_time_ratio) * (t_norm - r_time_ratio) / (2.0f * qrs_width_ratio * qrs_width_ratio)); + float s = -s_amp * expf(-(t_norm - s_time_ratio) * (t_norm - s_time_ratio) / (2.0f * qrs_width_ratio * qrs_width_ratio)); + float qrs = q + r + s; + + // T波 - 修正后的计算 + float t_wave = t_amp * expf(-(t_norm - t_time_ratio) * (t_norm - t_time_ratio) / (2.0f * t_width_ratio * t_width_ratio)); + + // 组合波形 + float ecg_value = p + qrs + t_wave; + + // 添加偏置电压,将ECG波形平移到DAC有效范围 + float offset = generator->amplitude; // 偏置电压 + ecg_value = ecg_value + offset; + + // 限制在DAC有效范围内 (0V 到 2.048V) + if (ecg_value < 0.0f) ecg_value = 0.0f; + if (ecg_value > 2.048f) ecg_value = 2.048f; + + generator->sample_count++; + return ecg_value; +} + +// 生成ECG查找表 +void ecg_generator_generate_lookup_table(ecg_generator_t *generator) { + if (generator == NULL) return; + + // 释放旧的查找表 + ecg_generator_free_lookup_table(generator); + + // 计算查找表大小:一个完整RR间期的样本数 + // 表大小 = 生成率 / 心率频率 + float heart_rate_freq = generator->heart_rate / 60.0f; // 转换为Hz + generator->table_size = (uint32_t)(generator->sample_rate / heart_rate_freq); + + // 确保表大小至少为1 + if (generator->table_size < 1) { + generator->table_size = 1; + } + + // 分配内存 + generator->ecg_lookup_table = (float*)malloc(generator->table_size * sizeof(float)); + if (generator->ecg_lookup_table == NULL) { + ESP_LOGE("ECG_GEN", "Failed to allocate memory for ECG lookup table"); + generator->table_size = 0; + return; + } + + // 预计算ECG波形值 + for (uint32_t i = 0; i < generator->table_size; i++) { + // 计算归一化时间 (0-1) + float t_norm = (float)i / generator->table_size; + + // 计算各波幅度 + float p_amp = generator->amplitude * generator->p_amp_ratio; + float q_amp = generator->amplitude * generator->q_amp_ratio; + float r_amp = generator->amplitude * generator->r_amp_ratio; + float s_amp = generator->amplitude * generator->s_amp_ratio; + float t_amp = generator->amplitude * generator->t_amp_ratio; + + // 时间参数(相对于RR间期的比例) + float p_time_ratio = 0.125f; // P波位置:12.5% + float q_time_ratio = 0.3125f; // Q波位置:31.25% + float r_time_ratio = 0.3375f; // R波位置:33.75% + float s_time_ratio = 0.3625f; // S波位置:36.25% + float t_time_ratio = 0.625f; // T波位置:62.5% + + // 宽度参数(相对于RR间期的比例) + float p_width_ratio = 0.0375f; // P波宽度:3.75% + float qrs_width_ratio = 0.0125f; // QRS宽度:1.25% + float t_width_ratio = 0.0625f; // T波宽度:6.25% + + // P波计算 + float p = p_amp * expf(-(t_norm - p_time_ratio) * (t_norm - p_time_ratio) / (2.0f * p_width_ratio * p_width_ratio)); + + // QRS波群计算 + float q = -q_amp * expf(-(t_norm - q_time_ratio) * (t_norm - q_time_ratio) / (2.0f * qrs_width_ratio * qrs_width_ratio)); + float r = r_amp * expf(-(t_norm - r_time_ratio) * (t_norm - r_time_ratio) / (2.0f * qrs_width_ratio * qrs_width_ratio)); + float s = -s_amp * expf(-(t_norm - s_time_ratio) * (t_norm - s_time_ratio) / (2.0f * qrs_width_ratio * qrs_width_ratio)); + float qrs = q + r + s; + + // T波计算 + float t_wave = t_amp * expf(-(t_norm - t_time_ratio) * (t_norm - t_time_ratio) / (2.0f * t_width_ratio * t_width_ratio)); + + // 组合波形 + float ecg_value = p + qrs + t_wave; + + // 添加偏置电压 + float offset = generator->amplitude; + ecg_value = ecg_value + offset; + + // 限制在DAC有效范围内 + if (ecg_value < 0.0f) ecg_value = 0.0f; + if (ecg_value > 2.048f) ecg_value = 2.048f; + + generator->ecg_lookup_table[i] = ecg_value; + } + + generator->table_index = 0; // 重置索引 + ESP_LOGI("ECG_GEN", "Generated ECG lookup table: %u points, %.1f BPM", generator->table_size, generator->heart_rate); +} + +// 释放ECG查找表 +void ecg_generator_free_lookup_table(ecg_generator_t *generator) { + if (generator == NULL) return; + if (generator->ecg_lookup_table != NULL) { + free(generator->ecg_lookup_table); + generator->ecg_lookup_table = NULL; + } + generator->table_size = 0; + generator->table_index = 0; +} + +// 清理ECG生成器 +void ecg_generator_cleanup(ecg_generator_t *generator) { + if (generator == NULL) return; + ecg_generator_stop(generator); + ecg_generator_free_lookup_table(generator); + ESP_LOGI("ECG_GEN", "ECG generator cleaned up."); +} diff --git a/signal_generators/src/sine_generator.c b/signal_generators/src/sine_generator.c new file mode 100644 index 0000000..c4a23a4 --- /dev/null +++ b/signal_generators/src/sine_generator.c @@ -0,0 +1,199 @@ +#include "sine_generator.h" +#include +#include +#include +#include "esp_log.h" + +// 初始化正弦波生成器 +void sine_generator_init(sine_generator_t *generator, float sample_rate) { + if (generator == NULL) return; + + memset(generator, 0, sizeof(sine_generator_t)); + + // 设置默认参数 + generator->frequency = 200.0f; // 默认200Hz正弦波 + generator->amplitude = 1.0f; // 幅值1.0V + generator->sample_rate = sample_rate; + generator->is_running = false; + + // 查找表参数 + generator->sine_lookup_table = NULL; + generator->table_size = 0; + generator->table_index = 0; +} + +// 设置正弦波频率 +void sine_generator_set_frequency(sine_generator_t *generator, float frequency) { + if (generator == NULL) return; + + // 限制频率范围 + if (frequency < 0.1f) frequency = 0.1f; + if (frequency > 10000.0f) frequency = 10000.0f; + + generator->frequency = frequency; + + // 如果已经运行,重新生成查找表 + if (generator->is_running) { + sine_generator_generate_lookup_table(generator); + } + + ESP_LOGI("SINE_GEN", "Sine wave frequency set to: %.1f Hz", frequency); +} + +// 设置幅值(直接输入mV值,内部自动转换为DAC输出值) +void sine_generator_set_amplitude(sine_generator_t *generator, float amplitude_mv) { + if (generator == NULL) return; + + // 硬件衰减系数:约38倍 (根据实际测量:0.132V → 5mV) + // 对应关系:amplitude(V) × 38 ≈ 示波器显示值(mV) + const float attenuation_factor = 38.0f; + + // 将mV除以衰减系数得到DAC输出值 + float dac_amplitude = amplitude_mv / attenuation_factor; + + generator->amplitude = dac_amplitude; + + // 如果已经运行,重新生成查找表 + if (generator->is_running) { + sine_generator_generate_lookup_table(generator); + } + + ESP_LOGI("SINE_GEN", "Sine wave amplitude set to: %.1f mV", amplitude_mv); +} + +// 开始生成 +void sine_generator_start(sine_generator_t *generator) { + if (generator == NULL) return; + + generator->is_running = true; + generator->sample_count = 0; + + // 生成查找表 + sine_generator_generate_lookup_table(generator); + + ESP_LOGI("SINE_GEN", "Sine generator started: %.1f Hz, %.1f mV", + generator->frequency, generator->amplitude * 38.0f); +} + +// 停止生成 +void sine_generator_stop(sine_generator_t *generator) { + if (generator == NULL) return; + + generator->is_running = false; + ESP_LOGI("SINE_GEN", "Sine generator stopped"); +} + +// 重置生成器 +void sine_generator_reset(sine_generator_t *generator) { + if (generator == NULL) return; + + generator->sample_count = 0; + generator->table_index = 0; +} + +// 获取下一个样本 +float sine_generator_get_next_sample(sine_generator_t *generator) { + if (generator == NULL || !generator->is_running) { + return 0.0f; + } + + // 使用预计算的查找表,超高速访问 + if (generator->sine_lookup_table != NULL && generator->table_size > 0) { + // 从查找表获取预计算的值 + float sine_value = generator->sine_lookup_table[generator->table_index]; + + // 更新索引,循环使用查找表 + generator->table_index = (generator->table_index + 1) % generator->table_size; + generator->sample_count++; + + return sine_value; + } else { + // 如果查找表未初始化,使用实时计算(备用方案) + float t = (float)generator->sample_count / generator->sample_rate; + float sine_value = generator->amplitude * sinf(2.0f * M_PI * generator->frequency * t); + + // 添加偏置电压 + float offset = generator->amplitude; + sine_value = sine_value + offset; + + // 限制在DAC有效范围内 + if (sine_value < 0.0f) sine_value = 0.0f; + if (sine_value > 2.048f) sine_value = 2.048f; + + generator->sample_count++; + return sine_value; + } +} + +// 生成正弦波查找表 +void sine_generator_generate_lookup_table(sine_generator_t *generator) { + if (generator == NULL) return; + + // 释放旧的查找表 + sine_generator_free_lookup_table(generator); + + // 计算查找表大小:一个完整周期的样本数 + // 表大小 = 采样率 / 正弦波频率 + generator->table_size = (uint32_t)(generator->sample_rate / generator->frequency); + + // 确保表大小至少为1 + if (generator->table_size < 1) { + generator->table_size = 1; + } + + // 分配内存 + generator->sine_lookup_table = (float*)malloc(generator->table_size * sizeof(float)); + if (generator->sine_lookup_table == NULL) { + ESP_LOGE("SINE_GEN", "Failed to allocate memory for sine lookup table"); + generator->table_size = 0; + return; + } + + // 预计算正弦波值 + for (uint32_t i = 0; i < generator->table_size; i++) { + // 计算时间点 + float t = (float)i / generator->sample_rate; + + // 计算正弦波值 + float sine_value = generator->amplitude * sinf(2.0f * M_PI * generator->frequency * t); + + // 添加偏置电压 + float offset = generator->amplitude; + sine_value = sine_value + offset; + + // 限制在DAC有效范围内 + if (sine_value < 0.0f) sine_value = 0.0f; + if (sine_value > 2.048f) sine_value = 2.048f; + + generator->sine_lookup_table[i] = sine_value; + } + + // 重置索引 + generator->table_index = 0; + + ESP_LOGI("SINE_GEN", "Generated sine lookup table: %u points, %.1f Hz", + generator->table_size, generator->frequency); +} + +// 释放正弦波查找表 +void sine_generator_free_lookup_table(sine_generator_t *generator) { + if (generator == NULL) return; + + if (generator->sine_lookup_table != NULL) { + free(generator->sine_lookup_table); + generator->sine_lookup_table = NULL; + } + + generator->table_size = 0; + generator->table_index = 0; +} + +// 清理生成器(释放所有资源) +void sine_generator_cleanup(sine_generator_t *generator) { + if (generator == NULL) return; + + generator->is_running = false; + sine_generator_free_lookup_table(generator); + + ESP_LOGI("SINE_GEN", "Sine generator cleaned up"); +}

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